eco2d/code/common/CMakeLists.txt

10 lines
225 B
CMake
Raw Normal View History

2021-05-05 09:25:05 +00:00
file(GLOB SRCS *.h *.c packets/*.h world/*.h)
2021-05-04 17:39:50 +00:00
set(SRCS ${SRCS}
world/blocks.c
world/perlin.c
world/world.c
2021-05-12 14:02:12 +00:00
world/worldgen/worldgen_test.c
2021-05-04 17:39:50 +00:00
)
include_directories(../modules . world)
add_library(eco2d-common STATIC ${SRCS})