4
0
mirror of https://github.com/QuasarApp/SoundBand.git synced 2025-05-13 07:29:34 +00:00
SoundBand/SoundBand.pro
2018-08-22 20:14:44 +03:00

45 lines
938 B
Prolog

TEMPLATE = subdirs
CONFIG += ordered
include($$PWD/installer/deploy/deployFiles.pri)
message( DEPLOY_FILES_MASTER = $$DEPLOY_FILES)
ENABLE_SNAP = 1 #only linux
ENABLE_INSTALLER = 0 #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 )
}
}
}