mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
00389c50ea
- tabs to spaces - use Unix line endings everywhere - newline at end of file - remove trailing white space - no space between keywords and opening parenthesis - use 2 spaces to indent
11 lines
336 B
CMake
11 lines
336 B
CMake
set(HEADERS hoardaux.h Hoard.h hoardstr.h)
|
|
set(CPPS hoard.cpp hoard_ui.cpp)
|
|
|
|
set(NETGAME_MODULE hoard)
|
|
|
|
add_library(${NETGAME_MODULE} SHARED ${CPPS} ${HEADERS})
|
|
set_target_properties(${NETGAME_MODULE} PROPERTIES PREFIX "")
|
|
set_target_properties(${NETGAME_MODULE} PROPERTIES SUFFIX ".d3m")
|
|
|
|
target_link_libraries(${NETGAME_MODULE} dmfc)
|