-
Notifications
You must be signed in to change notification settings - Fork 347
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
Dependencies #463
Comments
|
I need GEOS to compile spatlite. Currently I get the error message I have built GEOS as a static library which does not include ryu. Using As already written, I have no problem with |
|
Resolved by f65bb35 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, ryu is built as a dependency in the form of a static library. This is not really a problem, unless you also build GEOS statically, too. Then the library ryu is missing on linking against GEOS. Currently I have solved the problem by appending the following to CMakeLists.txt:
Now the ryu library is installed as well and I can link the target project with GEOS and ryu. But maybe it would make more sense to include the ryu code directly in GEOS.
The text was updated successfully, but these errors were encountered: