mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 09:34:40 -06:00
5 lines
153 B
Bash
Executable File
5 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 ..
|