web-dev-qa-db-ja.com

pkg-configがgtk + -3.0を見つけられない

ここで、パッケージgtk + -3.0が見つからなかったことを示します。

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

しかし、私は確かにgtk3をインストールしています:

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

ただし、ファイルgtk+-3.0.pcが見つからないようです。

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

何か案は? cmakeを使用しようとしていますが、gtk3が見つかりません。

39
Karl Morrison

私は通常のgtk3ファイルのみをインストールし、cmakeが以下を利用するために必要な開発ファイルはインストールしませんでした:

Sudo apt-get install build-essential libgtk-3-dev
72
Karl Morrison