Skip to content

Commit ba4acd9

Browse files
committed
fix(bio_ik): always build ik and walking as release
as we seem to have some issues with robots not being able to find IK solutions, which might be performance issues
1 parent 1d447c5 commit ba4acd9

3 files changed

Lines changed: 4 additions & 8 deletions

File tree

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ ros-jazzy-soccer-vision-3d-rviz-markers = ">=1.0.0,<2"
160160
ros-jazzy-soccer-vision-3d-msgs = ">=1.0.0,<2"
161161
ros-jazzy-soccer-vision-attribute-msgs = ">=1.0.0,<2"
162162
ros-jazzy-rot-conv = ">=1.1.0,<2"
163-
ros-jazzy-bio-ik = ">=2.0.0,<3"
163+
# ros-jazzy-bio-ik = ">=2.0.0,<3"
164164
ros-jazzy-bio-ik-msgs = ">=0.0.0,<0.0.1"
165165
ros-jazzy-biped-interfaces = ">=0.0.0,<0.0.1"
166166
ros-jazzy-bitbots-tf-buffer = ">=1.0.0,<2"

src/bitbots_motion/bitbots_quintic_walk/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ if(ipo_supported)
1818
endif()
1919

2020
# Build with release optimizations and debug symbols by default
21-
if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
22-
set(CMAKE_BUILD_TYPE RelWithDebug)
23-
endif()
21+
set(CMAKE_BUILD_TYPE RelWithDebug)
2422

2523
set(PYBIND11_PYTHON_VERSION 3)
2624
set(PYBIND11_FINDPYTHON ON)

src/lib/bio_ik/CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
cmake_minimum_required(VERSION 3.15)
22
project(bio_ik)
33

4-
if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
5-
set(CMAKE_BUILD_TYPE Release)
6-
endif()
4+
set(CMAKE_BUILD_TYPE Release)
75

86
find_package(ament_cmake REQUIRED)
97
find_package(ament_cmake_ros REQUIRED)
@@ -178,7 +176,7 @@ if(BUILD_TESTING)
178176
target_include_directories(bio_ik_test
179177
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
180178
PUBLIC $<INSTALL_INTERFACE:include>)
181-
179+
182180
endif()
183181

184182
ament_package()

0 commit comments

Comments
 (0)