所以我一直在尝试用qprinter致力于使用cmake + mingw + qt5.2获取我的程序,但我有问题:以下测试程序不编译,因为它无法找到应该是qprinterqtcore

#include <QPrinter>
#include <QApplication>
#include <windows.h>

int main()
{
    QApplication a( argc, argv );

    return 0;
} // end
.

这是我的cmake文件

    SET(CMAKE_C_COMPILER E:/Qt/Qt5.2.1/Tools/mingw48_32/bin/gcc.exe)
    SET(CMAKE_CXX_COMPILER E:/Qt/Qt5.2.1/Tools/mingw48_32/bin/g++.exe)
    cmake_minimum_required(VERSION 2.8)

    PROJECT (test_prog)
    add_definitions(-std=c++11)
    SET( test_prog_SRCS test.cpp)
      # Tell CMake to run moc when necessary:
      set(CMAKE_AUTOMOC ON)
      # As moc files are generated in the binary dir, tell CMake
      # to always look for includes there:
      set(CMAKE_INCLUDE_CURRENT_DIR ON)

      # Widgets finds its own dependencies.
      find_package(Qt5Widgets REQUIRED)
      find_package(Qt5Core REQUIRED)
      find_package(Qt5Gui REQUIRED)

    include_directories(
        ${Qt5Widgets_INCLUDE_DIRS}
        ${Qt5Gui_INCLUDE_DIRS}
        ${Qt5Core_INCLUDE_DIRS}
    )

    add_executable(test_prog WIN32  ${test_prog_SRCS})
    target_link_libraries(test_prog ${Qt5Widgets_LIBRARIES} ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} )
.

错误是:

test.cpp:1:20:致命错误:Qprinter:没有这样的文件或目录


#include <QPrinter>

有谁知道正确的咒语可以获得这个工作吗?

有帮助吗?

解决方案

CMake 2.8.11:

SET(CMAKE_C_COMPILER E:/Qt/Qt5.2.1/Tools/mingw48_32/bin/gcc.exe)
SET(CMAKE_CXX_COMPILER E:/Qt/Qt5.2.1/Tools/mingw48_32/bin/g++.exe)
cmake_minimum_required(VERSION 2.8.11)

PROJECT (test_prog)
add_definitions(-std=c++11)
SET( test_prog_SRCS test.cpp)
# Tell CMake to run moc when necessary:
set(CMAKE_AUTOMOC ON)
# As moc files are generated in the binary dir, tell CMake
# to always look for includes there:
set(CMAKE_INCLUDE_CURRENT_DIR ON)

find_package(Qt5PrintSupport REQUIRED)

add_executable(test_prog WIN32  ${test_prog_SRCS})
target_link_libraries(test_prog Qt5::PrintSupport)
.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top