Descent3/networking/CMakeLists.txt

12 lines
182 B
CMake
Raw Normal View History

set(HEADERS)
set(CPPS
networking.cpp)
2024-04-16 03:43:29 +00:00
set(PLATFORMCPPS)
2024-04-16 03:43:29 +00:00
if(WIN32)
set(PLATFORMCPPS "directplay.cpp")
endif()
2024-04-16 03:43:29 +00:00
add_library(networking STATIC ${HEADERS} ${CPPS} ${PLATFORMCPPS})