diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -58,6 +58,7 @@ _build_saga=yes _build_gob=yes _build_kyra=yes _build_lure=no +_build_cine=no _need_memalign=no _build_plugins=no _nasm=auto @@ -305,6 +306,7 @@ Optional Features: --disable-gob don't build the Gobli*ns engine --disable-kyra don't build the Legend of Kyrandia engine --enable-lure build the Lure of the Temptress engine + --enable-cine build the Cinematique engine evo 1 --enable-plugins build engines as loadable modules instead of static linking them --disable-mt32emu don't enable the integrated MT-32 emulator @@ -371,6 +373,7 @@ for ac_option in $@; do --disable-gob) _build_gob=no ;; --disable-kyra) _build_kyra=no ;; --enable-lure) _build_lure=yes ;; + --enable-cine) _build_cine=yes ;; --disable-hq-scalers) _build_hq_scalers=no ;; --disable-scalers) _build_scalers=no ;; --enable-alsa) _alsa=yes ;; @@ -691,6 +694,12 @@ else _mak_lure='# DISABLE_LURE = 1' fi +if test "$_build_cine" = no ; then + _mak_lure='DISABLE_CINE = 1' +else + _mak_lure='# DISABLE_CINE = 1' +fi + if test "$_build_hq_scalers" = no ; then _mak_hq_scalers='DISABLE_HQ_SCALERS = 1' else @@ -1259,6 +1268,9 @@ fi if test "$_build_lure" = yes ; then echo " Lure of the Temptress" fi +if test "$_build_cine" = yes ; then + echo " Cinematique evo 1" +fi echo @@ -1395,6 +1407,7 @@ $_mak_kyra $_mak_saga $_mak_gob $_mak_lure +$_mak_cine $_mak_mt32emu $_mak_hq_scalers |