1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
include(../../pgmodeler.pri)
TEMPLATE = lib
TARGET = utils
windows: DESTDIR = $$PWD
# Enables shared library symbols exporting
DEFINES += UTILS_SYMBOLS
HEADERS += src/utilsglobal.h \
src/attribsmap.h \
src/customuistyle.h \
src/exception.h \
src/enumtype.h \
src/globalattributes.h \
src/pgsqlversions.h \
src/doublenan.h \
src/application.h \
src/utilsns.h \
src/pgmodelerplugin.h
SOURCES += src/exception.cpp \
src/customuistyle.cpp \
src/globalattributes.cpp \
src/pgsqlversions.cpp \
src/application.cpp \
src/utilsns.cpp \
src/pgmodelerplugin.cpp
# Deployment settings
target.path = $$PRIVATELIBDIR
INSTALLS = target
|