From 1bd187bcfce721316019041db91c908a3438ef0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=BA=D0=B0=D1=82=D0=B5=D1=80=D0=B8=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=A1=D0=BF=D0=BE=D1=80=D0=BE=D0=B2=D0=B0?= Date: Sat, 19 Dec 2020 15:45:19 +0000 Subject: [PATCH] Add new file --- laba2_calc.pro | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 laba2_calc.pro diff --git a/laba2_calc.pro b/laba2_calc.pro new file mode 100644 index 0000000..623d79b --- /dev/null +++ b/laba2_calc.pro @@ -0,0 +1,23 @@ +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++11 + +# 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 += \ + calc.cpp \ + main.cpp \ + +HEADERS += \ + calc.h \ + +FORMS += + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target -- GitLab