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 e475cf2 commit 5467b0d
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 @@ -27,6 +27,12 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")

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()

set(LIBRARIES
MrsUavManagers_GainManager
MrsUavManagers_ConstraintManager
Expand Down Expand Up @@ -164,9 +170,6 @@ target_link_libraries(MrsUavManagers_TransformManager

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 5467b0d

Please sign in to comment.