Erro (qt5_add_resources) ao construir o kaffeine no debess jessie

1

no Kaffeine < 1.3 é um bug com o samba, eu tento construir a versão 1.3.x. Mas depois de chamar cmake, eu recebo um erro:

-- The C compiler identification is GNU 4.9.2
-- The CXX compiler identification is GNU 4.9.2
-- 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
-- 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
CMake Error at CMakeLists.txt:6 (qt5_add_resources):
  **Unknown CMake command "qt5_add_resources".**
-- Configuring incomplete, errors occurred!

Eu testo a versão e as configurações:

$ qtchooser -print-env
QT_SELECT="default"
QTTOOLDIR="/usr/lib/x86_64-linux-gnu/qt5/bin"
QTLIBDIR="/usr/lib/x86_64-linux-gnu"

$ qmake -v
QMake version 3.0
Using Qt version 5.3.2 in /usr/lib/x86_64-linux-gnu

$ cmake --version
cmake version 3.0.2
    
por Musketyr 18.08.2016 / 07:53

1 resposta

0

Você pode estar perdendo um pacote qt necessário. Tente instalar o pacote qt5-default .

sudo apt-get install -y qt5-default
    
por 06.09.2016 / 03:04