Zelda64Recomp/.devcontainer/post-create.sh

24 lines
432 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:11:45 +00:00
# symlink recomp tools to root (CMake needs them there)
# should be improved in the future
ln -s $(which N64Recomp) .
ln -s $(which RSPRecomp) .
2024-05-19 12:48:53 +00:00
# Initialize submodules
git submodule update --init --recursive