We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When building as shared libraries on windows (the default), the "install" target doesnt copy the DLLs (typically to a "bin" directory).
This is because in the install command (CMakeLits.txt) there is no instructions to copy "runtime" files.
It should look something like this:
install(TARGETS ${LIBRARY_NAME} EXPORT ${LIBRARY_NAME}Config LIBRARY DESTINATION lib RUNTIME DESTINATION bin ARCHIVE DESTINATION lib)
The text was updated successfully, but these errors were encountered:
Hello @jcar87!
Sorry for a late reply. Thank you for the issue! Fixed in commit 5ba4b2c.
Unfortunately, make install command will not work with qmake build on Windows. Does anyone know how to fix it?
make install
Sorry, something went wrong.
This is not true. I have recently installed "requests" with that command.
No branches or pull requests
When building as shared libraries on windows (the default), the "install" target doesnt copy the DLLs (typically to a "bin" directory).
This is because in the install command (CMakeLits.txt) there is no instructions to copy "runtime" files.
It should look something like this:
The text was updated successfully, but these errors were encountered: