Merge branch 'master' of 192.168.10.104:suwako/Hexagon

This commit is contained in:
2026-05-07 21:33:09 +09:00
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.svn .svn
hexagon hexagon
hexagon.exe hexagon.exe
hexagon-*

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
g++ -O3 -o hexagon.exe -I/mingw64/include -L/mingw64/lib main.cc src/*.cc\ g++ -O3 -DNDEBUG -o hexagon.exe -I/mingw64/include -L/mingw64/lib main.cc src/*.cc\
-std=c++17 -static -lpdcurses -lgdi32 -lcomdlg32 -lwinmm -luser32 -lwinpthread\ -std=c++17 -static -lpdcurses -lgdi32 -lcomdlg32 -lwinmm -luser32 -lwinpthread\
-lstdc++ -mwindows -lstdc++ -mconsole -s