You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CMake Deprecation Warning:
Support for "Extra Generators" like
CodeBlocks
is deprecated and will be removed from a future version of CMake. IDEs may
use the cmake-file-api(7) to view CMake-generated project build trees.
And the CMake documentation for CodeBlocks mentions that this will be removed in future:
Deprecated since version 3.27: Support for Extra Generators is deprecated and will be removed from a future version of CMake. IDEs may use the cmake-file-api(7) to view CMake-generated project build trees.
The build tools set the CodeBlocks - Unix Makefiles generator explicitly in many places via --cmake-args -G \"CodeBlocks - Unix Makefiles\" and there is a dedicated function ROSUtils::parseCodeBlocksFile to parse them.
@Levi-Armstrong What is the reason for using one of the CodeBlocks generators? What information is extracted from the cbp? Is this only to create the content for ROSUtils::PackageBuildInfoMap? What is the reason that we cannot use the default generator here?
The text was updated successfully, but these errors were encountered:
This is what the old cmake plugin used for building the code model so did the same for the roster plugin, but not sure how that is currently being done in the plugin now.
The build step shows the warning:
And the CMake documentation for
CodeBlocks
mentions that this will be removed in future:The build tools set the
CodeBlocks - Unix Makefiles
generator explicitly in many places via--cmake-args -G \"CodeBlocks - Unix Makefiles\"
and there is a dedicated functionROSUtils::parseCodeBlocksFile
to parse them.@Levi-Armstrong What is the reason for using one of the
CodeBlocks
generators? What information is extracted from thecbp
? Is this only to create the content forROSUtils::PackageBuildInfoMap
? What is the reason that we cannot use the default generator here?The text was updated successfully, but these errors were encountered: