WUT_Computer_Science/Programming/EGUI/lab1/lab1.pro

41 lines
890 B
Prolog
Raw Permalink Normal View History

2022-03-26 12:43:58 +01:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# 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 += \
2022-04-04 21:22:50 +02:00
blogentry.cpp \
blogsview.cpp \
2022-04-03 21:23:02 +02:00
login.cpp \
2022-03-26 12:43:58 +01:00
main.cpp \
2022-04-06 14:30:57 +02:00
mainwindow.cpp \
universalFunctions.cpp
2022-03-26 12:43:58 +01:00
HEADERS += \
2022-04-04 21:22:50 +02:00
blogentry.h \
blogsview.h \
2022-04-03 21:23:02 +02:00
login.h \
2022-04-06 14:30:57 +02:00
mainwindow.h \
universalFunctions.h
2022-03-26 12:43:58 +01:00
FORMS += \
2022-04-04 21:22:50 +02:00
blogentry.ui \
blogsview.ui \
2022-04-03 21:23:02 +02:00
login.ui \
2022-03-26 12:43:58 +01:00
mainwindow.ui
TRANSLATIONS += \
lab1_pl_PL.ts
CONFIG += lrelease
CONFIG += embed_translations
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target