- [NEW] Ajustada la compilació en Windows

- [FIX] Ficades les dll en l'arrel del zip
This commit is contained in:
2026-03-25 10:14:22 +01:00
parent 57852bd3ae
commit d362eef8bf
3 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ source = *.cpp ./lua/*.c
windows:
@echo off
g++ $(source) icon.res -Wall -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lmingw32 -lSDL3 -lopengl32 -mwindows -o "$(executable).exe"
g++ $(source) icon.res -Wall -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lmingw32 -lSDL3 -lopengl32 -static-libstdc++ -static-libgcc -lpthread -mwindows -o "$(executable).exe"
strip -s -R .comment -R .gnu.version --strip-unneeded "$(executable).exe"
windows_debug: