mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
11 lines
170 B
CMake
11 lines
170 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
fix.cpp)
|
|
|
|
add_library(fix STATIC ${HEADERS} ${CPPS})
|
|
target_include_directories(fix PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/fix
|
|
>
|
|
)
|