gremlin/src/common/CMakeLists.txt

23 lines
340 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
game
Time
Network
)
add_dependencies( common
enet
)
target_link_libraries(common
enet
)
if (WIN32)
target_link_libraries(common ws2_32 winmm)
endif(WIN32)