diff options
author | Eugene Sandulenko | 2005-04-05 15:07:40 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-04-05 15:07:40 +0000 |
commit | 1758c5b211a39c29a193546348e7cc6e7bc2e8c9 (patch) | |
tree | 225d803c62c79d6a6d95ada0096e8832e9e65044 /configure | |
parent | b399a052f1a60df4731aa15d330e1c0b759ed857 (diff) | |
download | scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.gz scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.tar.bz2 scummvm-rg350-1758c5b211a39c29a193546348e7cc6e7bc2e8c9.zip |
Initial checking of Gob engine
svn-id: r17388
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -30,6 +30,7 @@ _build_sword2=yes _build_queen=yes _build_kyra=no _build_saga=yes +_build_gob=no _need_memalign=no _build_plugins=no _nasm=auto @@ -268,6 +269,7 @@ Optional Features: --disable-queen don't build the Flight of the Amazon Queen engine --disable-saga don't build the SAGA engine --enable-kyra build the Legend of Kyrandia engine + --enable-gob build the Gobli*ns engine --enable-plugins build engines as loadable modules instead of static linking them --disable-mt32emu don't enable the integrated MT-32 emulator @@ -322,6 +324,7 @@ for ac_option in $@; do --disable-queen) _build_queen=no ;; --disable-saga) _build_saga=no ;; --enable-kyra) _build_kyra=yes ;; + --enable-gob) _build_gob=yes ;; --enable-alsa) _alsa=yes ;; --disable-alsa) _alsa=no ;; --enable-vorbis) _vorbis=yes ;; @@ -581,6 +584,12 @@ else _mak_saga='# DISABLE_SAGA = 1' fi +if test "$_build_gob" = no ; then + _mak_gob='DISABLE_GOB = 1' +else + _mak_gob='# DISABLE_GOB = 1' +fi + if test -n "$_host"; then # Cross-compiling mode - add your target here if needed case "$_host" in @@ -1041,6 +1050,9 @@ fi if test "$_build_kyra" = yes ; then echo " Legend of Kyrandia" fi +if test "$_build_gob" = yes ; then + echo " Gobli*ns" +fi echo @@ -1166,6 +1178,7 @@ $_mak_sword2 $_mak_queen $_mak_kyra $_mak_saga +$_mak_gob $_mak_mt32emu INCLUDES += $INCLUDES |