2020-11-30 15:29:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euxo pipefail
|
|
|
|
|
2021-02-06 17:09:27 +00:00
|
|
|
wget https://raw.githubusercontent.com/libretro/RetroArch/master/libretro-common/include/libretro.h -P libretro-common/include
|
|
|
|
|
2020-11-30 15:29:57 +00:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
|
2021-02-25 16:56:36 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=RELEASE -DLIBRETRO_COMMON_PATH=../libretro-common ..
|
2020-11-30 15:29:57 +00:00
|
|
|
make
|