From cc0e891cf706f6da9358da399ecc57c419da8803 Mon Sep 17 00:00:00 2001 From: Jhonny Knaak de Vargas Date: Tue, 11 Oct 2022 21:46:24 -0700 Subject: [PATCH] building 5.2.5 --- Cargo.toml | 2 +- install_assimp.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index da7fd73..1f246ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ nozlib = [] nolibcxx = [] [build-dependencies] -bindgen = "0.60.1" +bindgen = "0.59.2" vcpkg = "0.2.15" ureq = "2.5" serde_json = "1.0" diff --git a/install_assimp.bash b/install_assimp.bash index 08a0651..227fc31 100644 --- a/install_assimp.bash +++ b/install_assimp.bash @@ -15,7 +15,7 @@ if [ ! -d ${path_assimp_repo} ]; then fi if [ ! -d ${path_assimp_build} ]; then - mkdir ${path_assimp_build} + mkdir ${path_assimp_build} # shellcheck disable=SC2164 cd ${path_assimp_build} cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_INSTALL_PREFIX=/usr/local -G Ninja ..