Merge branch '18-remove-unnecessary-fpic-flags-in-tracetools-tracetools_test' into 'master'

Resolve "Remove unnecessary -fPIC flags in tracetools+tracetools_test"

Closes #18

See merge request micro-ROS/ros_tracing/ros2_tracing!47
This commit is contained in:
Christophe Bedard 2019-07-09 13:19:32 +00:00
commit 2c76d67755
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ if(NOT CMAKE_CXX_STANDARD)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic -fPIC)
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
find_package(ament_cmake_ros REQUIRED)

View file

@ -7,7 +7,7 @@ if(NOT CMAKE_CXX_STANDARD)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic -fPIC)
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
find_package(ament_cmake REQUIRED)