Skip to content

Commit 1d6027b

Browse files
Enable verbose makefiles (#603)
1 parent 3008c40 commit 1d6027b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

build_unix.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ then
7777
options+=" -D VCPKG_OVERLAY_TRIPLETS=$custom_triplets_dir"
7878
fi
7979

80+
options+=" -DCMAKE_VERBOSE_MAKEFILE=ON"
81+
8082
for build_type in $build_types
8183
do
8284
echo ">> Building ParquetSharpNative $build_type for $triplet"

build_windows.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ if ($Env:GITHUB_ACTIONS -eq "true") {
5959
$options += "VCPKG_OVERLAY_TRIPLETS=$customTripletsDir"
6060
}
6161

62+
$options += " -DCMAKE_VERBOSE_MAKEFILE=ON"
63+
6264
cmake -B build/$triplet -S . -D VCPKG_TARGET_TRIPLET=$triplet -D CMAKE_TOOLCHAIN_FILE=$vcpkgDir/scripts/buildsystems/vcpkg.cmake -G "Visual Studio 17 2022" -A $arch $options
6365
if (-not $?) { throw "cmake failed" }
6466

0 commit comments

Comments
 (0)