Skip to content

Commit

Permalink
Fix prebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaughan committed Feb 3, 2023
1 parent 0249f01 commit 64c74a5
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions prebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ if [ "$(uname)" == "Darwin" ]; then
triplet=(x64-osx)
fi

if [ ! -d "./vcpkg/imgui" ]; then
cd vcpkg
./vcpkg install clipp tinydir fmt imgui[freetype,sdl2-binding,opengl3-binding] tinyfiledialogs gl3w gsl-lite concurrentqueue catch2 cpptoml freetype sdl2 --triplet ${triplet[0]} --recurse
if [ "$(uname)" != "Darwin" ]; then
./vcpkg install glib --triplet ${triplet[0]} --recurse
fi
cd ..
cd vcpkg
./vcpkg install clipp tinydir fmt imgui[freetype,sdl2-binding,opengl3-binding] tinyfiledialogs gl3w gsl-lite concurrentqueue catch2 cpptoml freetype sdl2 --triplet ${triplet[0]} --recurse
if [ "$(uname)" != "Darwin" ]; then
./vcpkg install glib --triplet ${triplet[0]} --recurse
fi
cd ..

0 comments on commit 64c74a5

Please sign in to comment.