mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 12:09:00 +08:00
20 lines
607 B
CMake
20 lines
607 B
CMake
## # execute_process
|
|
##
|
|
## Intercepts all calls to execute_process() inside portfiles and fails when Download Mode
|
|
## is enabled.
|
|
##
|
|
## In order to execute a process in Download Mode call `_execute_process()` instead.
|
|
##
|
|
if (NOT DEFINED OVERRIDEN_EXECUTE_PROCESS)
|
|
set(OVERRIDEN_EXECUTE_PROCESS ON)
|
|
|
|
if (DEFINED VCPKG_DOWNLOAD_MODE)
|
|
macro(execute_process)
|
|
message(FATAL_ERROR "This command cannot be executed in Download Mode.\nHalting portfile execution.\n")
|
|
endmacro()
|
|
else()
|
|
macro(execute_process)
|
|
_execute_process(${ARGV})
|
|
endmacro()
|
|
endif()
|
|
endif() |