Descent3/misc/CMakeLists.txt

17 lines
260 B
CMake
Raw Normal View History

set(HEADERS)
set(CPPS
error.cpp
logfile.cpp
log.cpp
psglob.cpp
psrand.cpp
pstring.cpp)
2024-04-16 03:43:29 +00:00
add_library(misc STATIC ${HEADERS} ${CPPS})
target_link_libraries(misc spdlog::spdlog_header_only ddebug)
if(BUILD_TESTING)
add_subdirectory(tests)
endif()