我可以以某种方式创建一个普通的makefile或者为我的QT项目使用CMake。 我查了一些教程和以前的问题,但找不到任何东西。 有没有办法为QT项目制作安装程序或.deb创建者?
这是我对Qmake的主要关注,我需要为linux创建一个安装程序。
我正在使用Ubuntu。
这是我的Calculator.pro
文件:
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Calculator
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp\
error.cpp\
mathematics.cpp
HEADERS += mainwindow.h mathematics.h error.h
FORMS += mainwindow.ui