Skip to content

CMake Windows: install *.dll in the correct location #125

@tdegeus

Description

@tdegeus

The *.dll on Windows is currently being installed in %PREFIX%\Library\lib which should however be %PREFIX%\Library\bin. The fix is to set

install(TARGETS ...
           LIBRARY DESTINATION "lib"
           ARCHIVE DESTINATION "lib"
           RUNTIME DESTINATION "bin"
           ....)

Will open a PR.

References:

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions