diff --git a/build-appimage.py b/build-appimage.py index 63ef45f..8ef7b57 100755 --- a/build-appimage.py +++ b/build-appimage.py @@ -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); diff --git a/setup.sh b/setup.sh index e73b18f..ea78835 100755 --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,5 @@ #!/bin/bash pushd "$(dirname "$0")/subprojects/vgmstream" git apply ../../vgmstream.patch +git submodule update --init --recursive popd