Set symbols visibility to public for util functions

This commit is contained in:
Ingo Lütkebohle 2019-10-18 17:07:18 +00:00 committed by Christophe Bedard
parent ad46e04ebe
commit 7dea456122
10 changed files with 19 additions and 11 deletions

View file

@ -14,7 +14,13 @@ endif()
find_package(ament_cmake_ros REQUIRED)
option(TRACETOOLS_DISABLED "Explicitly disable support for tracing with LTTng" OFF)
if(WIN32)
set(DISABLED_DEFAULT ON)
else()
set(DISABLED_DEFAULT OFF)
endif()
option(TRACETOOLS_DISABLED "Explicitly disable support for tracing with LTTng" ${DISABLED_DEFAULT})
if(NOT TRACETOOLS_DISABLED)
# Set TRACING_ENABLED if we can find lttng-ust
find_package(PkgConfig)