Zelda64Recomp/.devcontainer/post-create.sh

23 lines
400 B
Bash
Raw Normal View History

2024-05-19 12:48:53 +00:00
#!/usr/bin/env bash
set -e
# Clone ZRE repo
2024-05-19 13:25:26 +00:00
git clone $ZRE_REPO_WITH_PAT
2024-05-19 12:48:53 +00:00
./zre/process.sh
# Run N64Recomp
N64Recomp us.rev1.toml
RSPRecomp aspMain.us.rev1.toml
RSPRecomp njpgdspMain.us.rev1.toml
# Cleanup
rm -rf zre
2024-05-19 14:24:44 +00:00
# symlink N64Recomp to root (CMake needs it there)
2024-05-19 14:11:45 +00:00
# should be improved in the future
ln -s $(which N64Recomp) .
2024-05-19 12:48:53 +00:00
# Initialize submodules
git submodule update --init --recursive