diff options
author | Willem Jan Palenstijn | 2012-09-11 18:39:22 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-09-11 19:16:51 +0200 |
commit | 08d641a0be33412e8e7b23baf8ff1d595ed5227a (patch) | |
tree | 71f3c1c6e48d3ad7a5932a339f7b74b0742122cf /configure | |
parent | 7da5c9df2826b6dc63555339a71fba992ed0c297 (diff) | |
download | scummvm-rg350-08d641a0be33412e8e7b23baf8ff1d595ed5227a.tar.gz scummvm-rg350-08d641a0be33412e8e7b23baf8ff1d595ed5227a.tar.bz2 scummvm-rg350-08d641a0be33412e8e7b23baf8ff1d595ed5227a.zip |
CONFIGURE: Add base engine descriptions to more engines
Only SCUMM and SAGA had such a description previously.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -750,6 +750,7 @@ get_subengines_build_string() { } # Engine specific build strings +# TODO: Clean this up (and specify these base strings in configure.engines?) get_scumm_build_string() { if test `get_engine_build $1` != no ; then if test $2 != no -a "$3" != wip ; then @@ -768,6 +769,52 @@ get_saga_build_string() { fi } +get_agos_build_string() { + if test `get_engine_build $1` != no ; then + if test $2 != no -a "$3" != wip; then + base="[AGOS 1 games]" + fi + get_subengines_build_string $1 $2 "$base" $3 + fi +} + +get_groovie_build_string() { + if test `get_engine_build $1` != no ; then + if test $2 != no -a "$3" != wip; then + base="[7th Guest]" + fi + get_subengines_build_string $1 $2 "$base" $3 + fi +} + +get_kyra_build_string() { + if test `get_engine_build $1` != no ; then + if test $2 != no -a "$3" != wip; then + base="[Legend of Kyrandia 1-3]" + fi + get_subengines_build_string $1 $2 "$base" $3 + fi +} + +get_sci_build_string() { + if test `get_engine_build $1` != no ; then + if test $2 != no -a "$3" != wip; then + base="[SCI 0-1.1 games]" + fi + get_subengines_build_string $1 $2 "$base" $3 + fi +} + +get_mohawk_build_string() { + if test `get_engine_build $1` != no ; then + if test $2 != no -a "$3" != wip; then + base="[Living Books]" + fi + get_subengines_build_string $1 $2 "$base" $3 + fi +} + + # # Greet user # |