Files
gb6/system6/compile.sh
2025-12-16 14:51:44 -06:00

7 lines
154 B
Bash
Executable File

#!/bin/sh
mkdir -p build
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=../../Retro68-build/toolchain/m68k-apple-macos/cmake/retro68.toolchain.cmake
make
cd ..