derek@toshiba:~/github.com/openMVG_Build$ cmake -DCMAKE_BUILD_TYPE=RELEASE . ../openMVG/src/
[...snip...]
-- Found Threads: TRUE
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.1.2")
-- Using X11 for window creation
-- Using GLX for context creation
CMake Error at dependencies/glfw/CMakeLists.txt:204 (message):
The RandR library and headers were not found
-- Configuring incomplete, errors occurred!
derek@toshiba:~/github.com/openMVG_Build$
Now what?
This fixed it for me:
sudo apt-get install xorg-dev libglu1-mesa-dev
One of the dependencies installed was xrandr-dev, which might be the only package actually needed to fix the build.
In either case the README's "Dependencies" should be updated for this.
Thank I will add it.
Most helpful comment
This fixed it for me:
sudo apt-get install xorg-dev libglu1-mesa-dev
One of the dependencies installed was xrandr-dev, which might be the only package actually needed to fix the build.
In either case the README's "Dependencies" should be updated for this.