1
1
mirror of https://github.com/andre-wojtowicz/qt-sql-example.git synced 2024-07-22 07:35:30 +02:00
qt-sql-example/qt-sql-example.pro
2017-09-02 23:11:10 +02:00

23 lines
551 B
Prolog

VERSION = 1.1
QMAKE_TARGET_DESCRIPTION = "Qt app that displays SQL table; for educational purposes"
QMAKE_TARGET_COPYRIGHT = "Andrzej Wojtowicz, Adam Mickiewicz University in Poznan"
QMAKE_TARGET_PRODUCT = "Qt SQL Example"
QT += core gui sql widgets
TARGET = qt-sql-example
TEMPLATE = app
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/db_controller.cpp
HEADERS += src/mainwindow.h \
src/db_controller.h
FORMS += src/mainwindow.ui
RESOURCES += res/icons.qrc
win32:RC_ICONS += res/database.ico