Commit dbd5e531 authored by Raphael Defosseux's avatar Raphael Defosseux

fix(build): freezing Niels Lohmann JSON version to v3.10.3

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 74ecfcb5
...@@ -141,7 +141,6 @@ install_pistache_from_git() { ...@@ -141,7 +141,6 @@ install_pistache_from_git() {
fi fi
git clone $GIT_URL git clone $GIT_URL
git submodule update --init
cd pistache && git checkout e18ed9baeb2145af6f9ea41246cf48054ffd9907 cd pistache && git checkout e18ed9baeb2145af6f9ea41246cf48054ffd9907
ret=$?;[[ $ret -ne 0 ]] && popd && return $ret ret=$?;[[ $ret -ne 0 ]] && popd && return $ret
mkdir _build && cd _build mkdir _build && cd _build
...@@ -191,8 +190,7 @@ install_nlohmann_from_git() { ...@@ -191,8 +190,7 @@ install_nlohmann_from_git() {
fi fi
git clone $GIT_URL git clone $GIT_URL
git submodule update --init cd json && git checkout -f v3.10.3
cd json && git checkout master
ret=$?;[[ $ret -ne 0 ]] && popd && return $ret ret=$?;[[ $ret -ne 0 ]] && popd && return $ret
mkdir _build && cd _build mkdir _build && cd _build
$CMAKE -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DJSON_BuildTests=OFF .. $CMAKE -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DJSON_BuildTests=OFF ..
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment