SoundBand/SoundBand.pro

47 lines
873 B
Prolog
Raw Normal View History

2018-09-30 16:37:21 +03:00
2018-08-16 23:20:33 +03:00
TEMPLATE = subdirs
CONFIG += ordered
2018-10-25 19:54:40 +03:00
ENABLE_SNAP = 1 #only linux
2018-09-08 16:42:13 +03:00
ENABLE_INSTALLER = 1 #only desctop
2018-08-16 23:20:33 +03:00
2018-09-30 17:38:38 +03:00
SUBDIRS += QuasarAppLib/QuasarApp.pro \
Sync \
2018-08-19 18:58:56 +03:00
SoundBand \
2018-08-19 19:16:21 +03:00
tests
2018-08-16 23:20:33 +03:00
2018-10-04 13:46:51 +03:00
unix:!android:{
SUBDIRS += CQtDeployer
}
2018-08-17 16:06:14 +03:00
SoundBand.depends = Sync QuasarAppLib/QuasarApp.pro
2018-08-16 23:20:33 +03:00
2018-08-22 20:14:44 +03:00
equals( ENABLE_INSTALLER, 1) {
!android:{
message(desktopVersion: enabled)
CONFIG(release, debug|release): {
2018-08-16 23:20:33 +03:00
2018-08-22 20:14:44 +03:00
SUBDIRS += installer
2018-08-16 23:20:33 +03:00
2018-08-22 20:14:44 +03:00
} else {
message( Selected Debug mode. The installer will not be created )
2018-08-16 23:20:33 +03:00
2018-08-22 20:14:44 +03:00
}
}
}
equals( ENABLE_SNAP, 1) {
2018-10-25 19:54:40 +03:00
unix:!android:{
2018-08-22 20:14:44 +03:00
message(desktopVersion: enabled)
CONFIG(release, debug|release): {
SUBDIRS += installer/packages/SoundBand/snap.pro
} else {
message( Selected Debug mode. The snap will not be created )
}
2018-08-21 12:21:50 +03:00
}
2018-08-16 23:20:33 +03:00
}