mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 14:03:27 +02:00
Do not clear VCPKG build trees so we can look at its logs
This commit is contained in:
parent
1da5fe2209
commit
7eb9f3050b
2 changed files with 5 additions and 4 deletions
|
@ -187,7 +187,7 @@ else()
|
|||
set(VCPKG_BUILD_TYPE_PARAM --vcpkg-build-type ${VCPKG_BUILD_TYPE})
|
||||
endif()
|
||||
execute_process(
|
||||
COMMAND ${HIFI_PYTHON_EXEC} ${CMAKE_CURRENT_SOURCE_DIR}/prebuild.py --release-type ${RELEASE_TYPE} --build-root ${CMAKE_BINARY_DIR} ${VCPKG_BUILD_TYPE_PARAM}
|
||||
COMMAND ${HIFI_PYTHON_EXEC} ${CMAKE_CURRENT_SOURCE_DIR}/prebuild.py --vcpkg-skip-clean --release-type ${RELEASE_TYPE} --build-root ${CMAKE_BINARY_DIR} ${VCPKG_BUILD_TYPE_PARAM}
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} RESULTS_VARIABLE PREBUILD_RET
|
||||
)
|
||||
# squelch the Policy CMP0074 warning without requiring an update to cmake 3.12.
|
||||
|
|
|
@ -162,6 +162,7 @@ def main():
|
|||
|
||||
# wipe out the build directories (after writing the tag, since failure
|
||||
# here shouldn't invalidate the vcpkg install)
|
||||
if not args.vcpkg_skip_clean:
|
||||
with timer('Cleaning builds'):
|
||||
pm.cleanBuilds()
|
||||
|
||||
|
|
Loading…
Reference in a new issue