Skip to content

Commit

Permalink
Update base_build.sh (#87)
Browse files Browse the repository at this point in the history
* Updated base build to cmake with nproc processors
  • Loading branch information
jredmondson authored Dec 16, 2023
1 parent 416e6d7 commit b70cadc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/linux/base_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ if [ $MADARA -eq 1 ] || [ $MADARA_AS_A_PREREQ -eq 1 ]; then
echo "cmake -Dmadara_TESTS=$TESTS -Dmadara_TUTORIALS=$TUTORIALS -DCMAKE_INSTALL_PREFIX=../install .."
cmake -Dmadara_TESTS=$TESTS -Dmadara_TUTORIALS=$TUTORIALS -DCMAKE_INSTALL_PREFIX=../install ..
echo "... build debug libs"
cmake --build . --config debug
cmake --build . --config debug -j$(nproc)

echo "... build release libs"
cmake --build . --config release
Expand Down Expand Up @@ -1841,7 +1841,7 @@ if [ $GAMS -eq 1 ] || [ $GAMS_AS_A_PREREQ -eq 1 ]; then

cmake -DCMAKE_INSTALL_PREFIX="..\install" -Dgams_TESTS=$TESTS -DCMAKE_PREFIX_PATH=$MADARA_ROOT/install ..
echo "... build debug libs"
cmake --build . --config debug
cmake --build . --config debug -j$(nproc)

echo "... build release libs"
cmake --build . --config release
Expand Down

0 comments on commit b70cadc

Please # to comment.