2022-09-27 12:56:48 +00:00
|
|
|
add_executable(eco2d
|
|
|
|
src/main.c
|
2022-09-27 13:55:24 +00:00
|
|
|
src/platform.c
|
2022-09-28 05:29:32 +00:00
|
|
|
src/worldgen.c
|
|
|
|
src/texgen.c
|
|
|
|
src/rules.c
|
2022-09-27 12:56:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_compile_definitions(eco2d PRIVATE CLIENT)
|
|
|
|
include_directories(src ../../foundation/src ../../../art/gen)
|
|
|
|
target_link_libraries(eco2d eco2d-foundation)
|
|
|
|
|
|
|
|
link_system_libs(eco2d)
|