mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
22 lines
294 B
CMake
22 lines
294 B
CMake
set(HEADERS
|
|
psglob.h
|
|
psrand.h
|
|
pstring.h
|
|
)
|
|
set(CPPS
|
|
psglob.cpp
|
|
psrand.cpp
|
|
pstring.cpp
|
|
)
|
|
|
|
add_library(misc STATIC ${HEADERS} ${CPPS})
|
|
target_include_directories(misc PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/misc
|
|
>
|
|
)
|
|
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(tests)
|
|
endif()
|