Skip to content

Commit

Permalink
#2174: update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrepebay committed Jul 8, 2024
1 parent c47308d commit b617aa1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,17 @@ then
cd "${source_dir}/lib"
vt_tv_rev="master"
git clone -b "${vt_tv_rev}" --depth 1 https://github.com/DARMA-tasking/vt-tv.git
export VT_TV=$PWD/vt-tv
export VT_TV_BUILD=${build_dir}/vt-tv
mkdir -p "$VT_TV_BUILD"
cd "$VT_TV_BUILD"
mkdir build
cd build
cmake -G "${CMAKE_GENERATOR:-Ninja}" \
-DVT_TV_PYTHON_BINDINGS_ENABLED=OFF \
-DCMAKE_INSTALL_PREFIX="$VT_TV_BUILD/install" \
"$VT_TV"
cmake --build . ${dashj} --target install
cd -
fi
fi
Expand Down

0 comments on commit b617aa1

Please sign in to comment.