pkg-config não encontra gtk + -3.0

22

Afirma que o pacote gtk + -3.0 não foi encontrado:

karl@karl-ux303ln:~$ pkg-config --cflags gtk+-3.0
Package gtk+-3.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing 'gtk+-3.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk+-3.0' found

No entanto, tenho aparentemente o gtk3 instalado:

karl@karl-ux303ln:~$ dpkg -l libgtk* | grep -e '^i' | grep -e 'libgtk-*[0-9]'
ii  libgtk-3-0:amd64                            3.14.15-0ubuntu1~14.04~ricotz1                              amd64        GTK+ graphical user interface library
ii  libgtk-3-bin                                3.14.15-0ubuntu1~14.04~ricotz1                              amd64        programs for the GTK+ graphical user interface library
ii  libgtk-3-common                             3.14.15-0ubuntu1~14.04~ricotz1                              all          common files for the GTK+ graphical user interface library
ii  libgtk2.0-0:amd64                           2.24.23-0ubuntu1.3                                          amd64        GTK+ graphical user interface library
ii  libgtk2.0-bin                               2.24.23-0ubuntu1.3                                          amd64        programs for the GTK+ graphical user interface library
ii  libgtk2.0-common                            2.24.23-0ubuntu1.3                                          all          common files for the GTK+ graphical user interface library

No entanto, não consigo encontrar o arquivo gtk+-3.0.pc :

karl@karl-ux303ln:~$ sudo find / -name "gtk+-3.0.pc"
karl@karl-ux303ln:~$ 

Alguma ideia? Estou tentando usar o cmake, mas não consigo encontrar o gtk3.

    
por Karl Morrison 29.05.2016 / 16:01

1 resposta

45

Eu só tinha os arquivos gtk3 normais instalados, não os arquivos de desenvolvimento necessários para o cmake fazer uso de:

sudo apt-get install build-essential libgtk-3-dev
    
por Karl Morrison 29.05.2016 / 16:07

Tags