58 lines
1.5 KiB
Prolog
58 lines
1.5 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2018-02-02T09:56:58
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = RecipeDB
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += model/recipe/instruction.cpp \
|
|
model/recipe/recipe.cpp \
|
|
userInterface/mainwindow.cpp \
|
|
main.cpp \
|
|
model/database/database.cpp \
|
|
model/recipe/ingredients/unitofmeasure.cpp \
|
|
model/recipe/ingredients/ingredient.cpp \
|
|
model/recipe/ingredients/ingredientlistmodel.cpp \
|
|
model/recipe/ingredients/recipeingredient.cpp \
|
|
model/recipe/tags/recipetag.cpp \
|
|
SQLite/sqlite3.c \
|
|
model/database/resulttable.cpp \
|
|
model/database/recipedatabase.cpp \
|
|
utils/fileutils.cpp \
|
|
gui/newrecipedialog.cpp \
|
|
model/recipe/tags/taglistmodel.cpp
|
|
|
|
HEADERS += model/recipe/instruction.h \
|
|
model/recipe/recipe.h \
|
|
userInterface/mainwindow.h \
|
|
model/database/database.h \
|
|
model/recipe/ingredients/unitofmeasure.h \
|
|
model/recipe/ingredients/ingredient.h \
|
|
model/recipe/ingredients/ingredientlistmodel.h \
|
|
model/recipe/ingredients/recipeingredient.h \
|
|
model/recipe/tags/recipetag.h \
|
|
SQLite/sqlite3.h \
|
|
SQLite/sqlite3ext.h \
|
|
model/database/resulttable.h \
|
|
model/database/recipedatabase.h \
|
|
utils/fileutils.h \
|
|
gui/newrecipedialog.h \
|
|
model/recipe/tags/taglistmodel.h
|
|
|
|
LIBS += -ldl \
|
|
|
|
FORMS += gui/mainwindow.ui \
|
|
gui/newrecipedialog.ui
|
|
|
|
DISTFILES += \
|
|
.gitignore
|
|
|
|
RESOURCES +=
|