Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,9 @@ def get_cmake_definitions(builder_type, halide_target="host", wasm_jit="wabt", e
if builder_type.has_ccache() and not builder_type.sanitizer_preset():
cmake_definitions["Halide_CCACHE_BUILD"] = "ON"

cmake_definitions["CMAKE_TOOLCHAIN_FILE"] = Interpolate("%(prop:VCPKG_ROOT)s/scripts/buildsystems/vcpkg.cmake")

if builder_type.os == "windows":
cmake_definitions["CMAKE_TOOLCHAIN_FILE"] = Interpolate("%(prop:VCPKG_ROOT)s/scripts/buildsystems/vcpkg.cmake")
# CMake on Windows can't reliably find our pip-installed PyBind11 unless we set pybind11_ROOT to point to it
cmake_definitions["pybind11_ROOT"] = Property("VIRTUAL_ENV")

Expand Down