-
Notifications
You must be signed in to change notification settings - Fork 97
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
Migrate IGNITION- CMake variables #1057
Conversation
Signed-off-by: methylDragon <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #1057 +/- ##
=======================================
Coverage 83.42% 83.42%
=======================================
Files 149 149
Lines 18445 18445
=======================================
Hits 15388 15388
Misses 3057 3057 Continue to review full report at Codecov.
|
{ | ||
return std::string(GZ_PATH) + "/ign"; | ||
return std::string(GZ_PATH); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test failures seem to indicate we should have /gz
here, but that would be different from the other libs. Gotta look more carefully to see what's going on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a get_filename_component(GZ_PATH ${GZ_PROGRAM} DIRECTORY)
which stripped the filename :>
I just used GZ_PROGRAM
instead to just directly use the program path, which puts it in line with the other libs.
Signed-off-by: methylDragon <[email protected]>
f8a5d32
to
3bc5d15
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
gazebo-tooling/release-tools#718