diff options
author | Craig Scott <craig.scott@crascit.com> | 2023-02-24 06:10:38 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2023-02-24 06:17:36 (GMT) |
commit | c15674a9cb0f8c6d432a52ac6fb724cc85f68034 (patch) | |
tree | 7a0dbed535916592d90111370edc175ee16e90ce /Modules | |
parent | 31ef93f19ff9c1529024ab5e9b82143b99ef1c70 (diff) | |
download | CMake-c15674a9cb0f8c6d432a52ac6fb724cc85f68034.zip CMake-c15674a9cb0f8c6d432a52ac6fb724cc85f68034.tar.gz CMake-c15674a9cb0f8c6d432a52ac6fb724cc85f68034.tar.bz2 |
FetchContent: Reject CMAKE_TOOLCHAIN_FILE env var in sub-build
The sub-build should never try to use a toolchain file. The toolchain file
may itself be getting downloaded by FetchContent. If the
CMAKE_TOOLCHAIN_FILE environment variable is set, CMake uses it to
initialize the CMake variable of the same name. We need to explicitly
clear them before the first project call of the sub-build.
Fixes: #24535
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FetchContent/CMakeLists.cmake.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/FetchContent/CMakeLists.cmake.in b/Modules/FetchContent/CMakeLists.cmake.in index aa2ad99..8adb533 100644 --- a/Modules/FetchContent/CMakeLists.cmake.in +++ b/Modules/FetchContent/CMakeLists.cmake.in @@ -3,6 +3,12 @@ cmake_minimum_required(VERSION @CMAKE_VERSION@) +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + # We name the project and the target for the ExternalProject_Add() call # to something that will highlight to the user what we are working on if # something goes wrong and an error message is produced. |