AppleWin/source/linux/build.sh
Andrea Odetti 93bebd3eb0 Add travis support for Dear ImGui.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-02-06 17:09:27 +00:00

13 lines
349 B
Bash
Executable file

#!/bin/bash
set -euxo pipefail
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
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE -DLIBRETRO_COMMON_PATH=../libretro-common -DIMGUI_PATH=../imgui ..
make