mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
d82d3a2c3a
Unittests that used for testing refactored CleanupStr() in #207.
17 lines
260 B
CMake
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()
|