Descent3/rtperformance/CMakeLists.txt
Azamat H. Hackimov 7ba009b811 Isolate rtperformance module
Update rtperformance module, minor cleanups.
2024-07-28 16:50:42 +03:00

13 lines
241 B
CMake

set(CPPS
rtperformance.cpp)
add_library(rtperformance STATIC ${CPPS})
target_link_libraries(rtperformance PRIVATE
ddio
)
target_include_directories(rtperformance PUBLIC
$<BUILD_INTERFACE:
${PROJECT_SOURCE_DIR}/rtperformance
>
)