mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
17 lines
233 B
CMake
17 lines
233 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
error.cpp
|
|
logfile.cpp
|
|
log.cpp
|
|
psglob.cpp
|
|
psrand.cpp
|
|
pstring.cpp)
|
|
|
|
add_library(misc STATIC ${HEADERS} ${CPPS})
|
|
|
|
target_link_libraries(misc ddebug)
|
|
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|