Skip to content

Commit

Permalink
deps.macos: Add ability to set verbose CMake output in libajantv2
Browse files Browse the repository at this point in the history
  • Loading branch information
paulh-aja committed May 14, 2024
1 parent a32310f commit 5cd6cb5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion deps.macos/20-libajantv2.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,15 @@ build() {
log_info "Build (%F{3}${target}%f)"

cd ${dir}
cmake --build build_${arch} --config ${config}

args=(
--build build_${arch}
--config ${config}
)

if (( _loglevel > 1 )) args+=(--verbose)

cmake ${args}
}

install() {
Expand Down

0 comments on commit 5cd6cb5

Please sign in to comment.