From 171de5eb7e5c1b4203535a78b42ef74ccb334ca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacek=20=C5=9Awiderski?= Date: Fri, 12 May 2017 14:52:40 +0200 Subject: [PATCH] Add dependency on python3-dev package --- CMakeLists.txt | 2 +- README.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c41c9fe0..d68c96ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -462,7 +462,7 @@ endif(WIN32 AND NOT MSVC) if(CMAKE_HOST_UNIX AND NOT CMAKE_HOST_APPLE) set(CPACK_PACKAGE_CONTACT "contact@veles.io") set(CPACK_DEBIAN_PACKAGE_SECTION "utils") - set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt5core5a (>= 5.5.1), libqt5gui5 (>= 5.5.1), libqt5widgets5 (>= 5.5.1), libqt5network5 (>= 5.5.1), zlib1g (>= 1:1.2.8), python3 (>= 3.5.0), python3-venv (>= 3.5.0)") + set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt5core5a (>= 5.5.1), libqt5gui5 (>= 5.5.1), libqt5widgets5 (>= 5.5.1), libqt5network5 (>= 5.5.1), zlib1g (>= 1:1.2.8), g++, python3 (>= 3.5.0), python3-venv (>= 3.5.0), python3-dev (>= 3.5.0)") install(TARGETS main_ui RUNTIME DESTINATION bin COMPONENT "application") install(FILES "${PROJECT_SOURCE_DIR}/resources/install/veles.desktop" DESTINATION share/applications/ COMPONENT "application") diff --git a/README.rst b/README.rst index 37b1c7ec..57f2a347 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ corresponding to the dependencies above. On Ubuntu it can be done like this:: - apt-get install cmake zlib1g-dev qtbase5-dev python3 python3-venv + apt-get install cmake zlib1g-dev qtbase5-dev g++ python3 python3-venv python3-dev To build ::