Set symbols visibility to public for util functions
This commit is contained in:
parent
ad46e04ebe
commit
7dea456122
10 changed files with 19 additions and 11 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue