mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 14:01:17 +12:00
4 lines
144 B
Bash
Executable file
4 lines
144 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++
|
|
cd ..
|