2018-02-02 09:00:46 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2018-02-02T09:56:58
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += core gui
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = RecipeDB
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
2018-02-02 12:27:57 +00:00
|
|
|
SOURCES += SQLite/sqlite3.c \
|
|
|
|
model/recipe/ingredient.cpp \
|
|
|
|
model/recipe/instruction.cpp \
|
|
|
|
model/recipe/recipe.cpp \
|
|
|
|
model/recipe/recipeingredient.cpp \
|
|
|
|
userInterface/mainwindow.cpp \
|
|
|
|
main.cpp \
|
|
|
|
model/database/database.cpp
|
|
|
|
|
|
|
|
HEADERS += SQLite/sqlite3.h \
|
|
|
|
SQLite/sqlite3ext.h \
|
|
|
|
model/recipe/ingredient.h \
|
|
|
|
model/recipe/instruction.h \
|
|
|
|
model/recipe/recipe.h \
|
|
|
|
model/recipe/recipeingredient.h \
|
|
|
|
userInterface/mainwindow.h \
|
|
|
|
model/database/database.h
|
2018-02-02 09:00:46 +00:00
|
|
|
|
2018-02-02 10:41:36 +00:00
|
|
|
FORMS += gui/mainwindow.ui
|
2018-02-02 09:05:51 +00:00
|
|
|
|
|
|
|
DISTFILES += \
|
|
|
|
.gitignore
|
2018-02-02 12:27:57 +00:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
gui/menubuttonstylesheet.qrc
|