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