Skip to content

Commit

Permalink
New: Adds default build type to compliance_controller
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-mayr authored and stefanscherzinger committed Jul 13, 2023
1 parent 5244dc2 commit 42b7a26
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cartesian_compliance_controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ add_compile_options(-std=c++17)
set(ADDITIONAL_COMPILE_OPTIONS -Wall -Wextra -Wpedantic -Wno-unused-parameter)
add_compile_options(${ADDITIONAL_COMPILE_OPTIONS})

# Sets build type to "Release" in case no build type has not been set before
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif(NOT CMAKE_BUILD_TYPE)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
Expand Down

0 comments on commit 42b7a26

Please sign in to comment.