mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
c6ffeb8ad4
The tilde confuses CMake, maybe(?) due to CMP0053, though I would expect the OLD behavior to just keep working
10 lines
387 B
CMake
10 lines
387 B
CMake
SET (HEADERS lanclient.h)
|
|
SET (CPPS lanclient.cpp)
|
|
|
|
SET (NETGAME_MODULE "TCP_IP")
|
|
|
|
ADD_LIBRARY(${NETGAME_MODULE} SHARED ${CPPS} ${HEADERS})
|
|
set_target_properties(${NETGAME_MODULE} PROPERTIES PREFIX "")
|
|
set_target_properties(${NETGAME_MODULE} PROPERTIES SUFFIX ".d3c")
|
|
install(TARGETS ${NETGAME_MODULE} DESTINATION "${D3_GAMEDIR}online/")
|
|
target_link_libraries(${NETGAME_MODULE} inetfile) |