diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-07 00:34:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-07 00:34:52 +0300 |
commit | f0e8c6b9c23566d52e069d544baf41eccbd14b55 (patch) | |
tree | 4a38a398d60b41cfac1468f1d2cfb4fe78a80278 | |
parent | d557ce63e240960746e48c678b4a08ba66f7fe40 (diff) | |
download | mv-f0e8c6b9c23566d52e069d544baf41eccbd14b55.tar.gz mv-f0e8c6b9c23566d52e069d544baf41eccbd14b55.tar.bz2 mv-f0e8c6b9c23566d52e069d544baf41eccbd14b55.tar.xz mv-f0e8c6b9c23566d52e069d544baf41eccbd14b55.zip |
Show in configure what type of code will be built.
-rwxr-xr-x | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a44573698..89df3c276 100755 --- a/configure.ac +++ b/configure.ac @@ -591,6 +591,16 @@ AC_CONFIG_FILES([data/tmw/tmw], [chmod +x data/tmw/tmw]) AC_OUTPUT echo +if test "$with_manaplusgame" == "yes"; then + echo "Enabled building manaplus game." +fi +if test "$with_dyecmd" == "yes"; then + echo "Enabled building dyecmd." +fi +if test "$unittests_enabled" == true; then + echo "Enabled building unit tests." +fi + echo "Build with OpenGL: $with_opengl" echo echo "LIBS: $LIBS" |