mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
60c5dbf1fe
This can help with CMake IDE integration and file indexing.
15 lines
283 B
CMake
15 lines
283 B
CMake
set(HEADERS
|
|
rtperformance.h)
|
|
set(CPPS
|
|
rtperformance.cpp)
|
|
|
|
add_library(rtperformance STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(rtperformance PRIVATE
|
|
ddio
|
|
)
|
|
target_include_directories(rtperformance PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/rtperformance
|
|
>
|
|
)
|