mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
4 lines
153 B
Bash
Executable file
4 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -G Ninja
|
|
cd ..
|