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
I'm trying to write bindings for the Rust programming language. Is there a way to statically link this project?
The text was updated successfully, but these errors were encountered:
You can probably do what you want by fiddling with CMakeLists.txt. See https://cmake.org/cmake/help/v3.0/command/add_library.html for how to make it create a static library.
Sorry, something went wrong.
@calebmer I just had to do this, in case you've not figured it out, it's a simple change, as mentioned, to CmakeLists.txt.
SHARED -> STATIC should do the trick.
SHARED
STATIC
No branches or pull requests
I'm trying to write bindings for the Rust programming language. Is there a way to statically link this project?
The text was updated successfully, but these errors were encountered: