We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e5fbdb commit 043620dCopy full SHA for 043620d
.github/workflows/build.yml
@@ -31,6 +31,7 @@ jobs:
31
update: true
32
install: scons pkg-config mingw-w64-x86_64-gcc mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_image mingw-w64-x86_64-bullet mingw-w64-x86_64-curl mingw-w64-x86_64-libvorbis
33
- name: Build
34
+ set MSYSTEM=MINGW64
35
run: msys2 -c 'scons'
36
37
test_MacOS:
src/SConscript
@@ -141,7 +141,7 @@ src = Split("""
141
utils.cpp
142
window.cpp""")
143
144
-src.sort(key = lambda t: cmp(t[0].lower(), t[1].lower()))
+src.sort(key = lambda x: x.lower())
145
146
#------------------------#
147
# Copy Build Environment #
0 commit comments