You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
524 B
20 lines
524 B
3 months ago
|
# License: Apache 2.0. See LICENSE file in root directory.
|
||
|
# Copyright(c) 2022 Intel Corporation. All Rights Reserved.
|
||
|
|
||
|
project(rs-dds-sniffer)
|
||
|
|
||
|
set(SRC rs-dds-sniffer.cpp)
|
||
|
set(INC rs-dds-sniffer.h)
|
||
|
|
||
|
add_executable(${PROJECT_NAME} ${INC} ${SRC})
|
||
|
target_link_libraries(${PROJECT_NAME} PRIVATE realdds tclap )
|
||
|
set_target_properties (${PROJECT_NAME} PROPERTIES
|
||
|
FOLDER Tools/dds
|
||
|
CXX_STANDARD 11
|
||
|
)
|
||
|
|
||
|
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||
|
|
||
|
using_easyloggingpp( ${PROJECT_NAME} )
|
||
|
|