mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
db8aa64d2f
Properly define MEM_USE_RTL definition only for mem library. Link other dependant modules with mem.
14 lines
199 B
CMake
14 lines
199 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
networking.cpp
|
|
$<$<PLATFORM_ID:Windows>:
|
|
directplay.cpp
|
|
>
|
|
)
|
|
|
|
add_library(networking STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(networking PRIVATE
|
|
ddio
|
|
mem
|
|
)
|