Skip to content

Commit

Permalink
Update README.md (#245)
Browse files Browse the repository at this point in the history
Cmake failed on my system (running Ubuntu 20.04) with the "apt-get install ..." command in the readme. The Cmake error was 
```
CMake Error at /usr/lib/x86_64-linux-gnu/cmake/Qt5/Qt5Config.cmake:28 (find_package):
  Could not find a package configuration file provided by "Qt5Svg" with any
  of the following names:

    Qt5SvgConfig.cmake
    qt5svg-config.cmake

  Add the installation prefix of "Qt5Svg" to CMAKE_PREFIX_PATH or set
  "Qt5Svg_DIR" to a directory containing one of the above files.  If "Qt5Svg"
  provides a separate development package or SDK, be sure it has been
  installed.
Call Stack (most recent call first):
  CMakeLists.txt:49 (find_package)
```
 To fix this, I had to also install libqt5svg5-dev. I added "libqt5svg5-dev" to the "apt-get install" command.
  • Loading branch information
CB750-Rider authored Jun 19, 2020
1 parent bad025b commit 600b667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ apt-get update
apt-get install libkf5threadweaver-dev libkf5i18n-dev libkf5configwidgets-dev \
libkf5coreaddons-dev libkf5itemviews-dev libkf5itemmodels-dev libkf5kio-dev \
libkf5solid-dev libkf5windowsystem-dev libelf-dev libdw-dev cmake \
extra-cmake-modules gettext
extra-cmake-modules gettext libqt5svg5-dev
```

### On Fedora
Expand Down

0 comments on commit 600b667

Please sign in to comment.