SoundBand/SoundBand.pro
2018-09-30 16:37:21 +03:00

45 lines
891 B
Prolog

TEMPLATE = subdirs
CONFIG += ordered
message( DEPLOY_FILES_MASTER = $$DEPLOY_FILES)
ENABLE_SNAP = 0 #only linux
ENABLE_INSTALLER = 1 #only desctop
SUBDIRS += Sync \
QuasarAppLib/QuasarApp.pro \
SoundBand \
CQtDeployer \
tests
SoundBand.depends = Sync QuasarAppLib/QuasarApp.pro
equals( ENABLE_INSTALLER, 1) {
!android:{
message(desktopVersion: enabled)
CONFIG(release, debug|release): {
SUBDIRS += installer
} else {
message( Selected Debug mode. The installer will not be created )
}
}
}
equals( ENABLE_SNAP, 1) {
!android:{
message(desktopVersion: enabled)
CONFIG(release, debug|release): {
SUBDIRS += installer/packages/SoundBand/snap.pro
} else {
message( Selected Debug mode. The snap will not be created )
}
}
}