-
Notifications
You must be signed in to change notification settings - Fork 133
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
CMake: Fix dll install location #475
Conversation
The same issue is solved slightly differently with a patch in MSYS2: But admittedly, I prefer your proposed change. |
didnt know that omitting DESTINATION is equivalent, lets use new features when they are available (seems to be from cmake>=3.14 but sundials requires >=3.18 anyways) |
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.
Just a couple request w.r.t. the change notes. Please also sign your commit as per our Contributing guide.
Signed-off-by: Julien Schueller <[email protected]>
This fixes dll search on conda where dlls are expected to be installed in prefix/bin (pretty standard layout) static or import libs still go to prefix/lib Signed-off-by: Julien Schueller <[email protected]> Co-authored-by: Cody Balos <[email protected]>
This fixes dll search on conda where dlls are expected to be installed in prefix/bin (pretty standard layout)
static or import libs still go to prefix/lib