eco2d/code/apps/client/CMakeLists.txt

47 lines
941 B
CMake
Raw Normal View History

2021-01-10 16:42:01 +00:00
find_package(raylib 3.5 QUIET)
if (NOT raylib_FOUND)
include(FetchContent)
FetchContent_Declare(
raylib
URL https://github.com/raysan5/raylib/archive/master.tar.gz
)
FetchContent_GetProperties(raylib)
if (NOT raylib_POPULATED)
set(FETCHCONTENT_QUIET NO)
FetchContent_Populate(raylib)
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
add_subdirectory(${raylib_SOURCE_DIR} ${raylib_BINARY_DIR})
endif()
endif()
2021-01-11 20:08:16 +00:00
add_library(client-common STATIC
2021-01-10 16:42:01 +00:00
source/network.c
source/game.c
2021-01-11 20:35:43 +00:00
source/main.c
2021-01-10 16:42:01 +00:00
header/network.h
header/game.h
)
2021-01-11 20:08:16 +00:00
add_executable(eco2d-client
2021-01-11 20:11:03 +00:00
source/platform_raylib.c
2021-01-11 20:08:16 +00:00
)
add_executable(eco2d-cli
2021-01-11 20:11:03 +00:00
source/platform_text.c
2021-01-11 20:08:16 +00:00
)
2021-01-19 09:44:43 +00:00
set(LIBS client-common cwpack eco2d-common)
2021-01-19 10:47:54 +00:00
include_directories(header)
2021-01-19 09:44:43 +00:00
target_link_libraries(eco2d-client raylib ${LIBS})
target_link_libraries(eco2d-cli ${LIBS})
link_system_libs(eco2d-cli)
link_system_libs(eco2d-client)