eco2d/code/apps/playground/CMakeLists.txt

12 lines
258 B
CMake
Raw Normal View History

2021-05-05 09:25:05 +00:00
populate_pkt_srcs()
2021-05-04 11:04:15 +00:00
add_executable(playground
2021-05-05 09:25:05 +00:00
source/main.c
source/game.c
${PKT_SRCS}
2021-05-04 11:04:15 +00:00
)
2021-05-04 17:39:50 +00:00
include_directories(header ../modules ../common)
target_link_libraries(playground eco2d-common eco2d-modules flecs-bundle cwpack)
2021-05-04 11:04:15 +00:00
link_system_libs(playground)