Descent3/networking/CMakeLists.txt
Azamat H. Hackimov db8aa64d2f Make mem module isolated from project
Properly define MEM_USE_RTL definition only for mem library. Link other dependant modules with mem.
2024-06-20 00:43:51 +03:00

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
)