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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# This file contains the main settings to build subprojects
include(pgmodeler.pri)
# Subprojects (libraries only)
SUBDIRS = libs/$$LIBUTILS \
libs/$$LIBPARSERS \
libs/$$LIBCORE \
libs/$$LIBCONNECTOR \
libs/$$LIBCANVAS \
libs/$$LIBGUI
# Include the tests subprojects only on debug mode
CONFIG(debug, debug|release): SUBDIRS += tests
# Include the plugins subprojects only if exists
PLUGINS_SRC_ROOT=$$PWD/plugins/plugins.pro
!exists($$PLUGINS_SRC_ROOT) {
warning("The subproject $$PLUGINS_SRC_ROOT wasn't found! pgModeler will be build without plugins.")
warning("If you want to compile pgModeler with plugins make sure to clone https://github.com/pgmodeler/plugins inside pgModeler's root folder and rerun qmake.")
}
exists($$PLUGINS_SRC_ROOT) {
SUBDIRS += plugins
}
# Including executables subprojects
SUBDIRS += apps/pgmodeler \
apps/pgmodeler-cli \
apps/pgmodeler-ch \
apps/pgmodeler-se
# Deployment settings
defined(DEMO_VERSION, var): samples.files = assets/samples/demo.dbm
!defined(DEMO_VERSION, var): samples.files = assets/samples/*
samples.path = $$SAMPLESDIR
schemas.files = assets/schemas/*
schemas.path = $$SCHEMASDIR
lang.files = assets/lang/*
lang.path = $$LANGDIR
conf.files = assets/conf/*
conf.path = $$CONFDIR
doc.files = README.md CHANGELOG.md LICENSE RELEASENOTES.md
doc.path = $$DOCDIR
INSTALLS += samples schemas lang conf doc
CONFIG += qt
|