gremlin/src/common/CMakeLists.txt

23 lines
423 B
CMake
Raw Normal View History

2011-01-17 21:51:17 +01:00
include_directories (${GREMLIN_SOURCE_DIR}/libs/enet/include)
include_directories (${GREMLIN_SOURCE_DIR}/src)
add_library( common
Application
2011-01-18 21:52:05 +01:00
Game
2011-01-17 21:51:17 +01:00
Time
Network
2018-11-26 13:15:41 +01:00
Config
2011-01-17 21:51:17 +01:00
)
add_dependencies( common
2011-01-24 23:52:12 +01:00
enet pugixml bullet trimeshloader yaml-cpp
2011-01-17 21:51:17 +01:00
)
target_link_libraries(common
2011-01-24 23:52:12 +01:00
enet pugixml bullet trimeshloader yaml-cpp
2011-01-17 21:51:17 +01:00
)
if (WIN32)
target_link_libraries(common ws2_32 winmm)
endif(WIN32)