Can I somehow create a normal makefile or use CMake for my QTproject. I looked up some tutorials and previous questions, but could not find anything. Is there even a way to make a installer or .deb creator for a QT project?
This is my main concern with Qmake, I need to create an installer for linux.
I am using Ubuntu.
This is my Calculator.pro
file:
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