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-28 20:43:49 +00:00
|
|
|
SOURCES += model/recipe/instruction.cpp \
|
2018-02-02 12:27:57 +00:00
|
|
|
model/recipe/recipe.cpp \
|
|
|
|
userInterface/mainwindow.cpp \
|
|
|
|
main.cpp \
|
2018-02-12 13:24:11 +00:00
|
|
|
model/database/database.cpp \
|
2018-02-12 14:15:04 +00:00
|
|
|
model/recipe/ingredients/unitofmeasure.cpp \
|
|
|
|
model/recipe/ingredients/ingredient.cpp \
|
|
|
|
model/recipe/ingredients/ingredientlistmodel.cpp \
|
2018-02-12 18:25:48 +00:00
|
|
|
model/recipe/ingredients/recipeingredient.cpp \
|
2018-02-28 20:43:49 +00:00
|
|
|
model/recipe/tags/recipetag.cpp \
|
2018-03-01 16:19:13 +00:00
|
|
|
SQLite/sqlite3.c \
|
|
|
|
model/database/resulttable.cpp \
|
2018-03-02 13:14:56 +00:00
|
|
|
model/database/recipedatabase.cpp \
|
2018-03-04 08:05:20 +00:00
|
|
|
utils/fileutils.cpp \
|
2018-03-10 11:36:14 +00:00
|
|
|
gui/newrecipedialog.cpp \
|
2018-03-10 13:06:24 +00:00
|
|
|
model/recipe/tags/taglistmodel.cpp \
|
|
|
|
gui/newDialogs/newingredientdialog.cpp \
|
2018-03-11 07:57:57 +00:00
|
|
|
gui/newDialogs/newtagdialog.cpp \
|
|
|
|
gui/newDialogs/newunitdialog.cpp \
|
|
|
|
utils/aspectratiopixmaplabel.cpp \
|
|
|
|
utils/stringutils.cpp \
|
2018-03-11 08:33:48 +00:00
|
|
|
gui/openrecipedialog.cpp
|
2018-02-02 12:27:57 +00:00
|
|
|
|
2018-02-28 20:43:49 +00:00
|
|
|
HEADERS += model/recipe/instruction.h \
|
2018-02-02 12:27:57 +00:00
|
|
|
model/recipe/recipe.h \
|
|
|
|
userInterface/mainwindow.h \
|
2018-02-12 13:24:11 +00:00
|
|
|
model/database/database.h \
|
2018-02-12 14:15:04 +00:00
|
|
|
model/recipe/ingredients/unitofmeasure.h \
|
|
|
|
model/recipe/ingredients/ingredient.h \
|
|
|
|
model/recipe/ingredients/ingredientlistmodel.h \
|
2018-02-12 18:25:48 +00:00
|
|
|
model/recipe/ingredients/recipeingredient.h \
|
2018-02-28 20:43:49 +00:00
|
|
|
model/recipe/tags/recipetag.h \
|
|
|
|
SQLite/sqlite3.h \
|
2018-03-01 16:19:13 +00:00
|
|
|
SQLite/sqlite3ext.h \
|
|
|
|
model/database/resulttable.h \
|
2018-03-02 08:32:40 +00:00
|
|
|
model/database/recipedatabase.h \
|
2018-03-04 08:05:20 +00:00
|
|
|
utils/fileutils.h \
|
2018-03-10 11:36:14 +00:00
|
|
|
gui/newrecipedialog.h \
|
2018-03-10 13:06:24 +00:00
|
|
|
model/recipe/tags/taglistmodel.h \
|
|
|
|
gui/newDialogs/newingredientdialog.h \
|
2018-03-11 07:57:57 +00:00
|
|
|
gui/newDialogs/newtagdialog.h \
|
|
|
|
gui/newDialogs/newunitdialog.h \
|
|
|
|
utils/aspectratiopixmaplabel.h \
|
|
|
|
utils/stringutils.h \
|
2018-03-11 08:33:48 +00:00
|
|
|
gui/openrecipedialog.h
|
2018-02-28 20:43:49 +00:00
|
|
|
|
|
|
|
LIBS += -ldl \
|
2018-02-02 09:00:46 +00:00
|
|
|
|
2018-03-04 08:05:20 +00:00
|
|
|
FORMS += gui/mainwindow.ui \
|
2018-03-10 13:06:24 +00:00
|
|
|
gui/newrecipedialog.ui \
|
|
|
|
gui/newDialogs/newingredientdialog.ui \
|
2018-03-11 07:57:57 +00:00
|
|
|
gui/newDialogs/newtagdialog.ui \
|
|
|
|
gui/newDialogs/newunitdialog.ui \
|
2018-03-11 08:33:48 +00:00
|
|
|
gui/openrecipedialog.ui
|
2018-02-02 09:05:51 +00:00
|
|
|
|
|
|
|
DISTFILES += \
|
|
|
|
.gitignore
|
2018-02-02 12:27:57 +00:00
|
|
|
|
2018-03-10 11:58:31 +00:00
|
|
|
RESOURCES += \
|
|
|
|
images.qrc
|