summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src/main.lua')
-rw-r--r--scripts/src/main.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua
index c9c99a354c3..a517c39092b 100644
--- a/scripts/src/main.lua
+++ b/scripts/src/main.lua
@@ -103,12 +103,16 @@ end
configuration { "mingw*" or "vs*" }
targetextension ".exe"
+ configuration { "rpi" }
+ targetextension ""
+
configuration { "asmjs" }
targetextension ".bc"
if os.getenv("EMSCRIPTEN") then
local emccopts = ""
emccopts = emccopts .. " -O3"
emccopts = emccopts .. " -s USE_SDL=2"
+ emccopts = emccopts .. " -s USE_SDL_TTF=2"
emccopts = emccopts .. " --memory-init-file 0"
emccopts = emccopts .. " -s ALLOW_MEMORY_GROWTH=0"
emccopts = emccopts .. " -s TOTAL_MEMORY=268435456"