-
Notifications
You must be signed in to change notification settings - Fork 857
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
CMake build error 'epoxy::epoxy' not found #936
Comments
Can you provide details about your system and your build steps? If you install the dependencies as per instructions via The CMake symbols with |
I run an Ubuntu 22.04 and for the build steps, I followed this,
and when I add
I get the following error
|
so this is how I found a solution, I took inspiration from this link FindEpoxy.cmake module to make a library
|
It is still not clear to me what exactly you are doing. This
so you should not need to add it again to any of the CMakeLists.txt .
And the file Can you please state exactly, step-by-step, what you are doing and how this can be reproduced on a fresh Ubuntu? Feel free to add a script or Docker run file that reproduces this. |
I can reproduce this now by using Pangolin as an external project. @Uchiha729 Can you check if #937 solves the problem for you without your |
YES!!! |
run |
Initially the error came up saying even -lOpengl::EGL could not be found, but I edited the CMakeLists.txt as shown below
and the
/usr/bin/ld: cannot find -lOpenGL::EGL No such file or directory
was gone but still the/usr/bin/ld: cannot find -lepoxy::epoxy: No such file or directory
error persists. I also havelibepoxy-dev
installed throughsudo apt-get install libepoxy-dev
The plotTrajectory.cpp code is below,
The text was updated successfully, but these errors were encountered: