mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
11 lines
185 B
CMake
11 lines
185 B
CMake
SET (HEADERS )
|
|
SET (CPPS
|
|
networking.cpp)
|
|
|
|
SET (PLATFORMCPPS )
|
|
|
|
IF(WIN32)
|
|
SET (PLATFORMCPPS "directplay.cpp")
|
|
ENDIF()
|
|
|
|
ADD_LIBRARY(networking STATIC ${HEADERS} ${CPPS} ${PLATFORMCPPS}) |