Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
gilpazintel committed Feb 27, 2025
1 parent 66467cd commit eedd032
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions examples/memory-leaks-check/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
# Copyright(c) 2019-2024 Intel Corporation. All Rights Reserved.
cmake_minimum_required(VERSION 3.8)

project( start-camera-for-mem-leak )
project(RealsenseExamplesMemLeak )

# Save the command line compile commands in the build output
set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
add_executable( ${PROJECT_NAME} start-camera-for-mem-leak.cpp )
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
target_link_libraries( ${PROJECT_NAME} ${DEPENDENCIES} tclap )
add_executable( start-camera-for-mem-leak start-camera-for-mem-leak.cpp )
set_property(TARGET start-camera-for-mem-leak PROPERTY CXX_STANDARD 11)
target_link_libraries( start-camera-for-mem-leak ${DEPENDENCIES} tclap )
include_directories(../ ../../third-party/ ../../common/res)
set_target_properties( ${PROJECT_NAME} PROPERTIES FOLDER "Examples" )

using_easyloggingpp( ${PROJECT_NAME} SHARED )

install( TARGETS ${PROJECT_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} )
set_target_properties( start-camera-for-mem-leak PROPERTIES FOLDER "Examples" )
install( TARGETS start-camera-for-mem-leak RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} )

0 comments on commit eedd032

Please sign in to comment.