You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
2.5 KiB
Prolog
131 lines
2.5 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2015-10-28T15:25:33
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
#iconset: https://www.iconfinder.com/iconsets/snipicons
|
|
|
|
QT += widgets sql
|
|
|
|
TARGET = core
|
|
TEMPLATE = lib
|
|
|
|
DEFINES += CORE_LIBRARY \
|
|
_GLIBCXX_USE_CXX11_ABI=0
|
|
|
|
SOURCES += \
|
|
data/user.cpp \
|
|
context.cpp \
|
|
imetadataplugin.cpp \
|
|
transaction.cpp \
|
|
emptystringvalidator.cpp \
|
|
data/role.cpp \
|
|
data/permission.cpp \
|
|
coreplugin.cpp \
|
|
igridform.cpp \
|
|
defaultformhandler.cpp \
|
|
formdialog.cpp \
|
|
iform.cpp \
|
|
users/users.cpp \
|
|
users/usersui.cpp \
|
|
users/tablemodel.cpp \
|
|
users/userform.cpp \
|
|
columndialog.cpp \
|
|
roles/rolestablemodel.cpp \
|
|
roles/roles.cpp \
|
|
roles/rolesui.cpp \
|
|
roles/rolesform.cpp \
|
|
permissionservice.cpp \
|
|
filterui.cpp \
|
|
exprevaluator.cpp \
|
|
samestringvalidator.cpp \
|
|
savefilterdialog.cpp \
|
|
filterdialog.cpp \
|
|
itablemodel.cpp \
|
|
iservice.cpp \
|
|
combodata.cpp \
|
|
data/comboitem.cpp
|
|
|
|
HEADERS += core.h\
|
|
core_global.h \
|
|
iplugin.h \
|
|
service.h \
|
|
data/user.h \
|
|
context.h \
|
|
imetadataplugin.h \
|
|
autotablemodel.h \
|
|
autoform.h \
|
|
transaction.h \
|
|
ivalidator.h \
|
|
emptystringvalidator.h \
|
|
data/role.h \
|
|
data/permission.h \
|
|
data/core-data.h \
|
|
coreplugin.h \
|
|
define.h \
|
|
gridform.h \
|
|
igridform.h \
|
|
defaultformhandler.h \
|
|
formdialog.h \
|
|
iform.h \
|
|
users/users.h \
|
|
users/usersui.h \
|
|
users/tablemodel.h \
|
|
users/userform.h \
|
|
columndialog.h \
|
|
roles/rolestablemodel.h \
|
|
roles/roles.h \
|
|
roles/rolesui.h \
|
|
roles/rolesform.h \
|
|
permissionservice.h \
|
|
filterui.h \
|
|
exprevaluator.h \
|
|
samestringvalidator.h \
|
|
savefilterdialog.h \
|
|
filterdialog.h \
|
|
itablemodel.h \
|
|
data/core_global.h \
|
|
iservice.h \
|
|
combodata.h \
|
|
data/comboitem.h \
|
|
enums.h
|
|
|
|
unix {
|
|
target.path = /usr/lib
|
|
INSTALLS += target
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
QMAKE_CXXFLAGS += -Wno-unknown-pragmas
|
|
}
|
|
|
|
win32 {
|
|
QMAKE_CXXFLAGS += -wd4995 -wd4068
|
|
}
|
|
|
|
ODB_FILES = core/data/core-data.h
|
|
|
|
H_DIR = $$PWD/data/*.h
|
|
include(../odb.pri)
|
|
|
|
RESOURCES += \
|
|
rc.qrc
|
|
|
|
DISTFILES += \
|
|
metaData.json
|
|
|
|
FORMS += \
|
|
gridform.ui \
|
|
formdialog.ui \
|
|
users/userform.ui \
|
|
columndialog.ui \
|
|
roles/rolesform.ui \
|
|
filterui.ui \
|
|
savefilterdialog.ui \
|
|
filterdialog.ui
|
|
|
|
OTHER_FILES += \
|
|
users/metaData.json \
|
|
roles/metaData.json
|
|
|
|
TRANSLATIONS = core_cz.ts
|