Descent3/rtperformance/CMakeLists.txt
Azamat H. Hackimov dc0cd880e4 Add logger module
Implementing separated logger module.
2024-09-18 22:50:08 +03:00

16 lines
292 B
CMake

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