CMake PkgConfig不起作用

时间:2015-06-23 19:34:56

标签: cmake glfw pkg-config

这有效:

pkg-config --libs --cflags glfw3

pkg_search_module(GLFW REQUIRED glfw3)
我的CMakeLists.txt中的

不起作用。错误讯息:

-- checking for one of the modules 'glfw3'
CMake Error at /usr/share/cmake-3.2/Modules/FindPkgConfig.cmake:548 (message):
  None of the required 'glfw3' found

我为Ubuntu 15.04编译了CMake 3.2.3。

1 个答案:

答案 0 :(得分:0)

尝试:

pkg_check_modules (GLFW REQUIRED glfw3)
if (NOT GLFW_FOUND)
# put error here
endif ()