Commit edce19c7d6fb3e78bea0354a0d521583d277a0c3
Committed by
David Gräff
1 parent
5913ecb4
readme: add missing libqt5opengl5-dev
Without this package, I ran into the following error:
```
~/openhantek/build master $ cmake ..
-- The C compiler identification is GNU 7.2.0
-- The CXX compiler identification is GNU 7.2.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
ma-- Detecting CXX compile features - done
CMake Error at openhantek/CMakeLists.txt:5 (find_package):
By not providing "FindQt5OpenGL.cmake" in CMAKE_MODULE_PATH this project
has asked CMake to find a package configuration file provided by
"Qt5OpenGL", but CMake did not find one.
Could not find a package configuration file provided by "Qt5OpenGL" with
any of the following names:
Qt5OpenGLConfig.cmake
qt5opengl-config.cmake
Add the installation prefix of "Qt5OpenGL" to CMAKE_PREFIX_PATH or set
"Qt5OpenGL_DIR" to a directory containing one of the above files. If
"Qt5OpenGL" provides a separate development package or SDK, be sure it has
been installed.
-- Configuring incomplete, errors occurred!
See also "/home/michael/openhantek/build/CMakeFiles/CMakeOutput.log".
```
Showing
1 changed file
with
1 additions
and
1 deletions
readme.md
| ... | ... | @@ -28,7 +28,7 @@ You need a OpenGL 3.x capable graphics card for OpenHantek. |
| 28 | 28 | |
| 29 | 29 | ### Install requirements on Linux |
| 30 | 30 | For debian based systems (Ubuntu, Mint) install named requirements like this: |
| 31 | -> apt-get install g++ cmake qttools5-dev qttools5-dev-tools libfftw3-dev binutils-dev libusb-1.0-0-dev | |
| 31 | +> apt install g++ cmake qttools5-dev qttools5-dev-tools libfftw3-dev binutils-dev libusb-1.0-0-dev libqt5opengl5-dev | |
| 32 | 32 | |
| 33 | 33 | For rpm based distributions (Fedora) use this command: |
| 34 | 34 | > dnf install cmake gcc-c++ qt5-qtbase-gui qt5-qttools-devel qt5-qttranslations fftw-devel binutils-devel libusb-devel | ... | ... |