mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
60c5dbf1fe
This can help with CMake IDE integration and file indexing.
12 lines
178 B
CMake
12 lines
178 B
CMake
set(HEADERS
|
|
fix.h)
|
|
set(CPPS
|
|
fix.cpp)
|
|
|
|
add_library(fix STATIC ${HEADERS} ${CPPS})
|
|
target_include_directories(fix PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/fix
|
|
>
|
|
)
|