eco2d/code/apps/playground/CMakeLists.txt

9 lines
220 B
CMake
Raw Normal View History

2021-05-04 11:04:15 +00:00
add_executable(playground
source/main.c
2021-05-04 19:45:51 +00:00
source/game.c
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)