From 1e42f9a4691b074eac5b47536f9f828809fe16ca Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 30 Jan 2017 15:56:42 +0300 Subject: Add configure flag for prevent bulding main game code. New configure flag:--with-manaplusgame / --without-manaplusgame By default it allow build main game code. --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 59ff88913..080bdf791 100755 --- a/configure.ac +++ b/configure.ac @@ -55,6 +55,15 @@ fi AM_CONDITIONAL(ENABLE_DYECMD, test x$with_dyecmd = xyes) +# Option to enable ManaPlus game +AC_ARG_WITH(manaplusgame,[ --without-manaplusgame don't build ManaPlus game ] ) +if test "x$with_manaplusgame" == "xno"; then + with_manaplusgame=no +else + with_manaplusgame=yes +fi +AM_CONDITIONAL(ENABLE_MANAPLUSGAME, test x$with_manaplusgame = xyes) + # Enable nacl build AC_ARG_ENABLE(naclbuild, [ --enable-naclbuild Turn on nacl building], -- cgit v1.2.3-60-g2f50