From f114ddeb514776fc3939f3978c80609c33c8dfa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B3=D0=BE=D1=80=20=D0=A1=D0=B0=D0=BB=D1=8C=D0=BA?= =?UTF-8?q?=D0=BE=D0=B2?= Date: Thu, 7 Jan 2021 21:18:05 +0000 Subject: [PATCH] Upload New File --- calculator.pro | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 calculator.pro diff --git a/calculator.pro b/calculator.pro new file mode 100644 index 0000000..45d1f0b --- /dev/null +++ b/calculator.pro @@ -0,0 +1,26 @@ +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++11 +CONFIG+=sdk_no_version_check + +# You can make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + button.cpp \ + calculator.cpp \ + main.cpp \ + mainwindow.cpp + +HEADERS += \ + button.h \ + calculator.h \ + mainwindow.h + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target -- GitLab