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 51 52
|
XUP.QT_VERSION = Qt System (4.8.3)
XUP.WIN_PLATFORM_TARGET_RELEASE = bin/monkeystudio.exe
XUP.WIN_PLATFORM_TARGET_DEBUG = bin/monkeystudiod.exe
XUP.WIN_PLATFORM_TARGET_DEFAULT = bin/monkeystudiod.exe
XUP.MAC_PLATFORM_TARGET_RELEASE = bin/MonkeyStudio.app
XUP.MAC_PLATFORM_TARGET_DEBUG = bin/MonkeyStudio_debug.app
XUP.MAC_PLATFORM_TARGET_DEFAULT = bin/MonkeyStudio_debug.app
XUP.OTHERS_PLATFORM_TARGET_RELEASE = bin/monkeystudio
XUP.OTHERS_PLATFORM_TARGET_DEBUG = bin/monkeystudio_debug
XUP.OTHERS_PLATFORM_TARGET_DEFAULT = bin/monkeystudio_debug
# include install script
include( installs.pri )
TEMPLATE = subdirs
CONFIG *= ordered
qt4_initvars.file = qt4-initvars.pro
qt4_initvars.depends =
fresh.subdir = fresh
fresh.depends = qt4_initvars
ctags.subdir = ctags
ctags.depends = qt4_initvars
qCtagsSense.subdir = qCtagsSense
qCtagsSense.depends = qt4_initvars
monkey.subdir = monkey
monkey.depends = qt4_initvars
plugins.subdir = plugins
plugins.depends = qt4_initvars
qscintilla.subdir = qscintilla
qscintilla.depends = qt4_initvars
isEqual( QT_MAJOR_VERSION, 4 ) {
SUBDIRS *= qt4_initvars
}
isEqual( SYSTEM_QSCINTILLA, 0 ) {
SUBDIRS *= qscintilla
}
SUBDIRS *= fresh \
ctags \
qCtagsSense \
monkey \
plugins
|