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
|
XUP.QT_VERSION = Qt System (4.8.1)
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
SUBDIRS = fresh \
ctags \
qCtagsSense \
monkey \
plugins
!isEqual( SYSTEM_QSCINTILLA, 1 ) {
SUBDIRS = qscintilla \
$$SUBDIRS
}
|