|
@@ -3,6 +3,12 @@
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION @CMAKE_VERSION@)
|
|
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
|
|
# 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
|
|
# to something that will highlight to the user what we are working on if
|
|
|
# something goes wrong and an error message is produced.
|
|
# something goes wrong and an error message is produced.
|