RecipeDB/RecipeDB.pro

56 lines
1.4 KiB
Prolog
Raw Normal View History

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 \
model/recipe/recipe.cpp \
userInterface/mainwindow.cpp \
main.cpp \
2018-02-12 13:24:11 +00:00
model/database/database.cpp \
model/recipe/ingredients/unitofmeasure.cpp \
model/recipe/ingredients/ingredient.cpp \
model/recipe/ingredients/ingredientlistmodel.cpp \
model/recipe/ingredients/recipeingredient.cpp \
2018-02-28 20:43:49 +00:00
model/recipe/tags/recipetag.cpp \
SQLite/sqlite3.c \
model/database/resulttable.cpp \
model/database/recipedatabase.cpp \
utils/fileutils.cpp \
gui/newrecipedialog.cpp
2018-02-28 20:43:49 +00:00
HEADERS += model/recipe/instruction.h \
model/recipe/recipe.h \
userInterface/mainwindow.h \
2018-02-12 13:24:11 +00:00
model/database/database.h \
model/recipe/ingredients/unitofmeasure.h \
model/recipe/ingredients/ingredient.h \
model/recipe/ingredients/ingredientlistmodel.h \
model/recipe/ingredients/recipeingredient.h \
2018-02-28 20:43:49 +00:00
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
2018-02-28 20:43:49 +00:00
LIBS += -ldl \
2018-02-02 09:00:46 +00:00
FORMS += gui/mainwindow.ui \
gui/newrecipedialog.ui
DISTFILES += \
.gitignore
2018-02-12 13:24:11 +00:00
RESOURCES +=