summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSeth R Johnson <johnsonsr@ornl.gov>2021-06-22 01:25:12 (GMT)
committerBrad King <brad.king@kitware.com>2021-06-22 13:59:01 (GMT)
commit1d9009c27a5999f7793871e7f034ecdc3e8b280d (patch)
tree1d15cad34b9194f9c3721b44d07f578e9a1faf3f /Modules
parent6d9fec6c0ba13932afa42cac1c99c1ca9e74d108 (diff)
downloadCMake-1d9009c27a5999f7793871e7f034ecdc3e8b280d.zip
CMake-1d9009c27a5999f7793871e7f034ecdc3e8b280d.tar.gz
CMake-1d9009c27a5999f7793871e7f034ecdc3e8b280d.tar.bz2
CUDA: Implement CMAKE_USER_MAKE_RULES_OVERRIDE[_CUDA]
This is implemented by other languages, and is documented for all languages. This was accidentally left out of CUDA.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CMakeCUDAInformation.cmake19
1 files changed, 19 insertions, 0 deletions
diff --git a/Modules/CMakeCUDAInformation.cmake b/Modules/CMakeCUDAInformation.cmake
index 541d207..a2946f4 100644
--- a/Modules/CMakeCUDAInformation.cmake
+++ b/Modules/CMakeCUDAInformation.cmake
@@ -36,6 +36,25 @@ if(CMAKE_CUDA_COMPILER_ID)
endif()
+# This should be included before the _INIT variables are
+# used to initialize the cache. Since the rule variables
+# have if blocks on them, users can still define them here.
+# But, it should still be after the platform file so changes can
+# be made to those values.
+
+if(CMAKE_USER_MAKE_RULES_OVERRIDE)
+ # Save the full path of the file so try_compile can use it.
+ include(${CMAKE_USER_MAKE_RULES_OVERRIDE} RESULT_VARIABLE _override)
+ set(CMAKE_USER_MAKE_RULES_OVERRIDE "${_override}")
+endif()
+
+if(CMAKE_USER_MAKE_RULES_OVERRIDE_CUDA)
+ # Save the full path of the file so try_compile can use it.
+ include(${CMAKE_USER_MAKE_RULES_OVERRIDE_CUDA} RESULT_VARIABLE _override)
+ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CUDA "${_override}")
+endif()
+
+
if(NOT CMAKE_SHARED_LIBRARY_RUNTIME_CUDA_FLAG)
set(CMAKE_SHARED_LIBRARY_RUNTIME_CUDA_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG})
endif()