Hopefully make CI work better
Some checks failed
Build / build-gentoo (push) Failing after 1m7s
Build / download-system-deps (push) Successful in 3m31s
Build / get-source-code (push) Successful in 10m29s
Build / build-deb (push) Failing after 5m15s
Build / build-appimage (push) Successful in 4m41s
Build / build-android (push) Failing after 3m3s
Build / build-windows (push) Failing after 7m30s

This commit is contained in:
Zachary Hall 2024-12-18 13:09:07 -08:00
parent 5475841a3f
commit 9a1fc78248
2 changed files with 2 additions and 1 deletions

View file

@ -79,7 +79,7 @@ def main() -> None:
os.chdir(basedir)
os.makedirs("build", exist_ok=True)
os.chdir("build")
args=["cmake", ".."]
args=["cmake", "..", "-DBUILD_SDL=ON", "-DBUILD_SOUNDTOUCH=ON"]
for definition in p.cmake_vars:
args.append("-D%s" % definition)
ret = call(args);

View file

@ -1,4 +1,5 @@
#!/bin/bash
pushd "$(dirname "$0")/subprojects/vgmstream"
git apply ../../vgmstream.patch
git submodule update --init --recursive
popd