Skip to content

Commit 42b0e9e

Browse files
authored
Merge pull request #919 from robotology/traversaro-patch-2
Set IDYNTREE_COMPILES_YARP_TOOLS option to OFF
2 parents 7fc632c + af4c812 commit 42b0e9e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- In the URDF exporter, export only frames attached to the exported traversal [#914](https://github.com/robotology/idyntree/pull/914).
1616
- Fixed handling of the AMENT_PREFIX_PATH environment variable (https://github.com/robotology/idyntree/pull/915).
1717

18+
### Deprecated
19+
- The option `IDYNTREE_COMPILES_YARP_TOOLS`, that was already deprecated in iDynTree 3, is now set to `OFF` by default. It will be removed in iDynTree 5, please use the repo https://github.com/robotology/idyntree-yarp-tools instead (https://github.com/robotology/idyntree/pull/919).
20+
21+
1822
## [4.2.0] - 2021-07-23
1923

2024
- Add the possibility to pass the zmq url to the meshcat visualizer, to simplify its use in [Google Colab](https://colab.research.google.com) (https://github.com/robotology/idyntree/pull/905).

cmake/iDynTreeOptions.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ endif()
4444
# Turn off compilation of specific parts of iDynTree.
4545
option(IDYNTREE_COMPILES_OPTIMALCONTROL "Compile iDynTree optimal control part." TRUE)
4646
option(IDYNTREE_COMPILES_TOOLS "Compile iDynTree tools." TRUE)
47-
option(IDYNTREE_COMPILES_YARP_TOOLS "Deprecated: Compile iDynTree tools that depend (also) on YARP." TRUE)
47+
option(IDYNTREE_COMPILES_YARP_TOOLS "Deprecated: Compile iDynTree tools that depend (also) on YARP." OFF)
4848

4949
#########################################################################
5050
# Deal with RPATH

0 commit comments

Comments
 (0)