Descent3/fix/CMakeLists.txt
Louis Gombert 60c5dbf1fe CMake: add all headers to target sources
This can help with CMake IDE integration and file indexing.
2024-08-09 17:09:14 +02:00

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
>
)