We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3008c40 commit 1d6027bCopy full SHA for 1d6027b
build_unix.sh
@@ -77,6 +77,8 @@ then
77
options+=" -D VCPKG_OVERLAY_TRIPLETS=$custom_triplets_dir"
78
fi
79
80
+options+=" -DCMAKE_VERBOSE_MAKEFILE=ON"
81
+
82
for build_type in $build_types
83
do
84
echo ">> Building ParquetSharpNative $build_type for $triplet"
build_windows.ps1
@@ -59,6 +59,8 @@ if ($Env:GITHUB_ACTIONS -eq "true") {
59
$options += "VCPKG_OVERLAY_TRIPLETS=$customTripletsDir"
60
}
61
62
+$options += " -DCMAKE_VERBOSE_MAKEFILE=ON"
63
64
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
65
if (-not $?) { throw "cmake failed" }
66
0 commit comments