From a7ef59c9c4c3398422f58209ec64a4920a81e961 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 16 Feb 2022 09:20:01 -0500 Subject: Tests: Fix CudaOnly.SeparateCompilationPTX test project name Fix the test added by commit 61b9764b03 (CUDA: Allow both CUDA_SEPARABLE_COMPILATION and CUDA_PTX_COMPILATION, 2021-09-17, v3.23.0-rc1~516^2) to have a `project()` name matching what is passed to CTest's `--build-project` option. Otherwise, on VS builds, MSBuild warns: MSBUILD : error MSB1009: Project file does not exist. Other CUDA tests use a matching project name already. --- Tests/CudaOnly/SeparateCompilationPTX/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/CudaOnly/SeparateCompilationPTX/CMakeLists.txt b/Tests/CudaOnly/SeparateCompilationPTX/CMakeLists.txt index 273f955..2dd95c8 100644 --- a/Tests/CudaOnly/SeparateCompilationPTX/CMakeLists.txt +++ b/Tests/CudaOnly/SeparateCompilationPTX/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.19) -project (SeparateCompPTX CUDA) +project (SeparateCompilationPTX CUDA) #Goal for this example: # How to generate PTX files with RDC enabled -- cgit v0.12