diff options
author | Umar Arshad <umar@arrayfire.com> | 2017-10-04 01:41:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-10-04 12:07:37 (GMT) |
commit | 8b09c20c3a4aba1eabd65579ebc408c5d8d17a2e (patch) | |
tree | 0d7f71fc63cb5f4c5478a1e2bffb8d13d12d04b3 | |
parent | 046625d26f8715bd8dc9ddd609a0d8436b810558 (diff) | |
download | CMake-8b09c20c3a4aba1eabd65579ebc408c5d8d17a2e.zip CMake-8b09c20c3a4aba1eabd65579ebc408c5d8d17a2e.tar.gz CMake-8b09c20c3a4aba1eabd65579ebc408c5d8d17a2e.tar.bz2 |
FindCUDA: Fix CMP0007 warning in run_nvcc.cmake
Set `CMP0007` to `NEW` for the entire script. The script comes with
CMake and is aware of the policy's behavior, so set the policy to ensure
that its warnings do not show up during the build phase.
Fixes: #16579
-rw-r--r-- | Modules/FindCUDA/run_nvcc.cmake | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Modules/FindCUDA/run_nvcc.cmake b/Modules/FindCUDA/run_nvcc.cmake index ec5a099..f78119d 100644 --- a/Modules/FindCUDA/run_nvcc.cmake +++ b/Modules/FindCUDA/run_nvcc.cmake @@ -50,6 +50,8 @@ # generated_cubin_file:STRING=<> File to generate. This argument must be passed # in if build_cubin is true. +cmake_policy(PUSH) +cmake_policy(SET CMP0007 NEW) if(NOT generated_file) message(FATAL_ERROR "You must specify generated_file on the command line") endif() @@ -179,13 +181,8 @@ cuda_execute_process( set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}") set(CUDA_VERSION @CUDA_VERSION@) if(CUDA_VERSION VERSION_LESS "3.0") - cmake_policy(PUSH) - # CMake policy 0007 NEW states that empty list elements are not - # ignored. I'm just setting it to avoid the warning that's printed. - cmake_policy(SET CMP0007 NEW) # Note that this will remove all occurances of -G. list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G") - cmake_policy(POP) endif() # nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This @@ -304,3 +301,5 @@ if( build_cubin ) ) endif() + +cmake_policy(POP) |