-
Notifications
You must be signed in to change notification settings - Fork 308
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
Can't find python on OS X #269
Comments
I haven't tried. What do the abseil docs say about how to do that? |
Same here... 😢 Environment
Output
and plus, running cmake command inside
|
This is a separate issue, but I can see why it could appear similar. You need to specify You can send a PR to update the Mac instructions after you get it working. You may also need a |
Thank you! I was able to make some progress. first it finds python3 I tried Below is the full output.
|
Hello,
My project depends on s2geometry, but now that abseil was made external I can't compile anymore.
Indeed in my CMakeLists.txt I added add_subdirectory(third-party/abseil) before add_subdirectory(third-party/s2geometry) but s2 complained that it couldn't find abslConfig.cmake so I used set(ABSL_ENABLE_INSTALL ON) to have it, but now I'm stuck on the following error:
CMake Error at build/third-party/abseil-cpp/abslConfig.cmake:32 (include):
[cmake] include could not find load file:
[cmake]
[cmake] [...]/build/third-party/abseil-cpp/abslTargets.cmake
[cmake] Call Stack (most recent call first):
[cmake] third-party/s2geometry/CMakeLists.txt:71 (find_package)
The targets don't seem to be installed when add_subdirectory(third-party/abseil) finishes, when s2 launches find_package(absl REQUIRED).
Which brings me to my question: is there a way to compile abseil before s2 in the same CMake, or am I missing something here?
Best regards,
Paul
The text was updated successfully, but these errors were encountered: