Descent3/misc/CMakeLists.txt
2024-05-14 14:12:03 +02:00

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()