Skip to content

Commit

Permalink
Disable tracing on macOS (#53)
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <christophe.bedard@apex.ai>
  • Loading branch information
christophebedard committed Apr 6, 2023
1 parent 92da222 commit aafbf06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test_tracetools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif()

find_package(ament_cmake REQUIRED)

if(WIN32)
if(WIN32 OR APPLE)
set(DISABLED_DEFAULT ON)
else()
set(DISABLED_DEFAULT OFF)
Expand Down
2 changes: 1 addition & 1 deletion tracetools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ endif()

find_package(ament_cmake_ros REQUIRED)

if(WIN32)
if(WIN32 OR APPLE)
set(DISABLED_DEFAULT ON)
set(STATUS_CHECKING_TOOL_DEFAULT OFF)
else()
Expand Down

0 comments on commit aafbf06

Please sign in to comment.