56 lines
1.5 KiB
Prolog
56 lines
1.5 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2018-08-04T23:16:44
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = Ember
|
|
TEMPLATE = app
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
ui/welcome/welcomedialog.cpp \
|
|
ui/dialogs/newprojectdialog.cpp \
|
|
ui/mainwindow.cpp \
|
|
model/project.cpp \
|
|
model/projectitem.cpp \
|
|
storage/appdatastorage.cpp \
|
|
business/projectmanager.cpp
|
|
|
|
HEADERS += \
|
|
ui/welcome/welcomedialog.h \
|
|
ui/dialogs/newprojectdialog.h \
|
|
ui/mainwindow.h \
|
|
model/project.h \
|
|
model/projectitem.h \
|
|
properties/config.h \
|
|
storage/appdatastorage.h \
|
|
business/projectmanager.h
|
|
|
|
FORMS += \
|
|
ui/welcome/welcomedialog.ui \
|
|
ui/dialogs/newprojectdialog.ui
|
|
|
|
RESOURCES += \
|
|
resources/appresources.qrc
|
|
|
|
LIBS += -lboost_filesystem
|
|
LIBS += -lboost_system
|
|
LIBS += -lpugixml
|