From d03a64602b3358c95b81aa78a1b70e42d722fdaa Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 3 Nov 2023 16:34:21 +0300 Subject: [PATCH] wscript: change defaults for Android --- wscript | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/wscript b/wscript index 3a9ad4c1..8dd4f29c 100644 --- a/wscript +++ b/wscript @@ -196,11 +196,13 @@ def configure(conf): # modify options dictionary early if conf.env.DEST_OS == 'android': - conf.options.NO_VGUI= True # skip vgui - conf.options.NANOGL = True - conf.options.GLWES = True - conf.options.GL4ES = True - conf.options.GL = False + conf.options.NO_VGUI = True # skip vgui + conf.options.NANOGL = True + conf.options.GLWES = True + conf.options.GL4ES = True + conf.options.GL = False + conf.options.SINGLE_BINARY = True + conf.define('XASH_SDLMAIN', 1) elif conf.env.MAGX: conf.options.SDL12 = True conf.options.NO_VGUI = True