Descent3/misc/CMakeLists.txt

24 lines
330 B
CMake
Raw Normal View History

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 ${CPPS})
target_link_libraries(misc PRIVATE
ddebug
2024-06-29 00:52:39 +00:00
SDL2::SDL2
)
target_include_directories(misc PUBLIC
$<BUILD_INTERFACE:
${PROJECT_SOURCE_DIR}/misc
>
)
if(BUILD_TESTING)
add_subdirectory(tests)
endif()