如何正确链接到CMake中的QT4库?

时间:2013-04-20 18:35:15

标签: qt4 cmake

所以我正在尝试构建一个最初使用 CMake 而不是 .pro 文件制作的程序。但是,由于库声明存在问题,我无法构建它。例如,以下内容不起作用:

#include <QtGui/QApplication>

然而,这或多或少有效,但并非完全:

#include <qt4/QtGui/QApplication>

如果我使用上述内容,那么我会收到大量错误,因为编译器说它无法找到其他标头所指向的标头。问题是 qt4 的前缀。 如何在CMake文件中正确链接它,这样每个标题都可以在qt4下找到,而我不需要更改QT-SDK附带的一大堆标题?


CMAKE FILE :(来源:http://code.metager.de/source/xref/kde/Support/polkit-qt-1/examples/CMakeLists.txt

install(FILES org.qt.policykit.examples.policy DESTINATION ${SHARE_INSTALL_PREFIX}/polkit-1/actions/)

include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/gui
)

set(polkit_example_SRCS
main.cpp
PkExample.cpp
)

SET(polkit_example_RESOUCES
icons/icons.qrc
)

FIND_PACKAGE(Qt4 REQUIRED)

QT4_WRAP_CPP(polkit_example_MOC_SRCS
PkExample.h
)

QT4_WRAP_UI(polkit_example_UI_SRCS
PkExample.ui
)

QT4_ADD_RESOURCES (qtsourceview_RC_SRCS  ${polkit_example_RESOUCES})

add_executable(polkit-example
${polkit_example_SRCS}
${polkit_example_MOC_SRCS}
${polkit_example_UI_SRCS}
${qtsourceview_RC_SRCS}
)

target_link_libraries(polkit-example
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
polkit-qt-gui-1
polkit-qt-core-1
)

#--------Helper Application

# This macro is defined in FindPolkitQt.cmake
macro(dbus_add_activation_system_service _sources)
foreach (_i ${_sources})
    get_filename_component(_service_file ${_i} ABSOLUTE)
    string(REGEX REPLACE "\\.service.*$" ".service" _output_file ${_i})
    set(_target ${CMAKE_CURRENT_BINARY_DIR}/${_output_file})
    configure_file(${_service_file} ${_target})
    install(FILES ${_target} DESTINATION ${SHARE_INSTALL_PREFIX}/dbus-1/system-services )
    #install(FILES ${_target} DESTINATION ${_install_dir})
endforeach (_i ${ARGN})
endmacro(dbus_add_activation_system_service _sources)

set(polkit_example_helper_SRCS
PkExampleHelper.cpp
mainHelper.cpp
)

qt4_add_dbus_adaptor(polkit_example_helper_SRCS
org.qt.policykit.examples.xml
PkExampleHelper.h
PkExampleHelper
)

QT4_WRAP_CPP(polkit_example_helper_MOC_SRCS
PkExampleHelper.h
)

add_executable(polkit-example-helper
${polkit_example_helper_SRCS}
${polkit_example_helper_MOC_SRCS}
)

# see our helper is pretty small :D
target_link_libraries(polkit-example-helper
${QT_QTCORE_LIBRARY}
polkit-qt-core-1
)


dbus_add_activation_system_service(org.qt.policykit.examples.service.in)

install(FILES org.qt.policykit.examples.conf DESTINATION ${SYSCONF_INSTALL_DIR}/dbus-1/system.d)

1 个答案:

答案 0 :(得分:8)

据我所知,你很亲密。在FIND_PACKAGE(Qt4 REQUIRED)包含以下行后:

  

包括:($ {QT_USE_FILE})

根据the documentation

  

QT_USE_FILE指向的文件将通过添加包含目录,预处理器定义以及填充包含所有Qt库及其依赖项的QT_LIBRARIES变量来设置编译环境。

因此,应该为您设置正确的路径。