Pergunta

Então, estou tentando fazer com que meus programas com QPrinter funcionem, compilados com cmake+mingw+qt5.2, mas estou tendo problemas:o seguinte programa de teste não é compilado porque não consegue encontrar o QPrinter que deveria fazer parte do QtCore

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

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

    return 0;
} // end

este é o meu arquivo 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} )

O erro é:

teste.cpp:1:20:erro fatal:QImpressora:Não existe tal arquivo ou diretório
#include <QPrinter>

Alguém conhece os encantamentos certos para fazer isso funcionar?

Foi útil?

Solução

Com 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)
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top