wooo stuff yay
This commit is contained in:
parent
b0bf45a8a5
commit
d1bb9d8c67
91 changed files with 17403 additions and 42 deletions
|
|
@ -1,6 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "-std=c++17 -g -Wno-error -O0")
|
||||
if (DEFINED PLATFORMNAME)
|
||||
SET(CURRPLATFORM ${PLATFORMNAME})
|
||||
else ()
|
||||
SET(CURRPLATFORM "linux-64")
|
||||
endif (DEFINED PLATFORMNAME)
|
||||
|
||||
|
||||
set(CMAKE_CXX_FLAGS "-std=c++26 -w -g -Wno-error -O0")
|
||||
file(GLOB_RECURSE ENDLAUNCHER "src/*.cpp")
|
||||
add_executable(endlauncher ${ENDLAUNCHER})
|
||||
|
||||
|
|
@ -9,9 +16,9 @@ set_target_properties(endlauncher PROPERTIES
|
|||
)
|
||||
target_link_directories(
|
||||
endlauncher PUBLIC
|
||||
"${CMAKE_SOURCE_DIR}/link")
|
||||
"${CMAKE_SOURCE_DIR}/link/${PLATFORMNAME}")
|
||||
target_link_libraries(endlauncher PRIVATE
|
||||
"${CMAKE_SOURCE_DIR}/link/libenginend.so"
|
||||
"${CMAKE_SOURCE_DIR}/link/${PLATFORMNAME}/libenginend.so"
|
||||
curl zip
|
||||
)
|
||||
target_include_directories(endlauncher PUBLIC
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue