mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
dc0cd880e4
Implementing separated logger module.
16 lines
292 B
CMake
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
|
|
>
|
|
)
|