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.
33 lines
533 B
Prolog
33 lines
533 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2015-10-28T15:25:33
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += widgets
|
|
|
|
TARGET = core
|
|
TEMPLATE = lib
|
|
|
|
DEFINES += CORE_LIBRARY
|
|
|
|
SOURCES += core.cpp \
|
|
data/user.cpp \
|
|
context.cpp
|
|
|
|
HEADERS += core.h\
|
|
core_global.h \
|
|
iplugin.h \
|
|
service.h \
|
|
data/user.h \
|
|
context.h
|
|
|
|
unix {
|
|
target.path = /usr/lib
|
|
INSTALLS += target
|
|
}
|
|
|
|
ODB_FILES = core/data/user.h
|
|
H_DIR = $$PWD/data/*.h
|
|
include(../odb.pri)
|