-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add RUNTIME_DESTINATION variable #45
Conversation
0b3f847
to
90f1943
Compare
It's possible to put libraries and binaries directly to bin/ and lib/ (using RUNTIME_DESTINATION /) instead of bin/<name-version> and lib/<name-version>
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.
Thanks for adding this feature and a test case! Looks great, just a small suggestion to keep the CI script steps more organised.
Refactor: move test to it's own step Co-authored-by: Lars Melchior <TheLartians@users.noreply.github.com>
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.
Thanks for the update!
Feature released in |
Currently libs are installed under
<...>/lib/<packagename-version>/
directory.As a user I want to be able to configure relative subdirectory, similar to
INCLUDE_DESTINATION
.For example, I want to install mylib.so as
/usr/lib/mylib.so
instead of/usr/lib/mylib-1.0/mylib.so
. In this case I have to setRUNTIME_DESTINATION "/"
as relative path.