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
|
|
|
|
|
|
|
|
git clone --depth=1 https://github.com/ocornut/imgui.git
|
2020-12-12 19:39:22 +00:00
|
|
|
|
2020-11-30 15:29:57 +00:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
|
2021-02-06 17:09:27 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=RELEASE -DLIBRETRO_COMMON_PATH=../libretro-common -DIMGUI_PATH=../imgui ..
|
2020-11-30 15:29:57 +00:00
|
|
|
make
|