Skip to content

Commit

Permalink
[Bash] Fix passing extra CMake args.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Nov 24, 2023
1 parent 28fd388 commit 058a682
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cppbuild/cppbuild
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,5 @@ fi
mkdir -p "${BUILD_DIR}"
cd "${BUILD_DIR}" || exit

(cmake -G "Unix Makefiles" "${EXTRA_CMAKE_ARGS}" "${SOURCE_DIR}" && make clean && make -j "${ncpus}" all)
# shellcheck disable=SC2086
(cmake -G "Unix Makefiles" ${EXTRA_CMAKE_ARGS} "${SOURCE_DIR}" && make clean && make -j "${ncpus}" all)

0 comments on commit 058a682

Please sign in to comment.