Skip to content

Commit

Permalink
+ conditioned coverage flags
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Dec 9, 2023
1 parent 25b8bac commit 1130187
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ add_definitions(-Wall)
add_definitions(-Wextra)
add_definitions(-Wpedantic)

if(COVERAGE)
message(WARNING "building with --coverage, the performance might be limited")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage")
endif()

# remove warning info from PCL
set(PCL_FIND_QUIETLY INTERNAL)

Expand Down Expand Up @@ -371,9 +377,6 @@ target_link_libraries(cyclic_example

if(CATKIN_ENABLE_TESTING)

set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage")

add_subdirectory(test)

endif()
Expand Down

0 comments on commit 1130187

Please sign in to comment.