Descent3/misc/CMakeLists.txt
Azamat H. Hackimov d82d3a2c3a Unittests for misc
Unittests that used for testing refactored CleanupStr() in #207.
2024-05-01 02:46:20 +03:00

17 lines
260 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 spdlog::spdlog_header_only ddebug)
if(BUILD_TESTING)
add_subdirectory(tests)
endif()