Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid the "Generating the Urdf Model from" message to appear when doing ccmake #243

Merged
merged 2 commits into from
Mar 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ All notable changes to this project are documented in this file.
- Fix missing implementation of `YarpSensorBridge::getFailedSensorReads()`. (https://github.com/dic-iit/bipedal-locomotion-framework/pull/202)
- Fixed `mas-imu-test` configuration files after FW fix.
- Fixed the implementation ``YarpSensorBridge::attachAllSixAxisForceTorqueSensors()`. (https://github.com/dic-iit/bipedal-locomotion-framework/pull/231)
- Avoid the "Generating the Urdf Model from" message to appear when doing ccmake. (https://github.com/dic-iit/bipedal-locomotion-framework/pull/243)

## [0.1.0] - 2021-02-22
### Added
Expand Down
2 changes: 1 addition & 1 deletion cmake/GenerateAndAddUrdfModel.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function(generate_and_add_urdf_model)
set(installation_folder ${${prefix}_INSTALLATION_FOLDER})
set(extra_files ${${prefix}_EXTRA_FILES})

message("-- Generating the Urdf Model from ${script_name}")
message(STATUS "Generating the Urdf Model from ${script_name}")

execute_process (
COMMAND ${PYTHON_EXECUTABLE} "${script_name}.py" --install_folder "${CMAKE_BINARY_DIR}/Autogenerated/gazebo/models/${installation_folder}"
Expand Down