2022-09-27 14:19:57 +00:00
|
|
|
add_executable(minimal
|
|
|
|
src/main.c
|
|
|
|
src/platform.c
|
2022-09-28 05:29:32 +00:00
|
|
|
src/worldgen.c
|
|
|
|
src/texgen.c
|
|
|
|
src/rules.c
|
2023-02-02 12:24:16 +00:00
|
|
|
src/game.c
|
2022-09-27 14:19:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_compile_definitions(minimal PRIVATE CLIENT)
|
|
|
|
include_directories(src ../../foundation/src ../../../art/gen)
|
|
|
|
target_link_libraries(minimal eco2d-foundation)
|
|
|
|
|
|
|
|
link_system_libs(minimal)
|