diff --git a/Samples/0_Introduction/simpleTextureDrv/CMakeLists.txt b/Samples/0_Introduction/simpleTextureDrv/CMakeLists.txt index 01e4aa7b..2f4571be 100644 --- a/Samples/0_Introduction/simpleTextureDrv/CMakeLists.txt +++ b/Samples/0_Introduction/simpleTextureDrv/CMakeLists.txt @@ -46,5 +46,5 @@ add_custom_command( # Create a dummy target for fatbin generation add_custom_target(generate_fatbin_textureDrv ALL DEPENDS ${CUDA_FATBIN_FILE}) -# Ensure matrixMulDrv depends on the fatbin +# Ensure simpleTextureDrv depends on the fatbin add_dependencies(simpleTextureDrv generate_fatbin_textureDrv) diff --git a/Samples/3_CUDA_Features/memMapIPCDrv/CMakeLists.txt b/Samples/3_CUDA_Features/memMapIPCDrv/CMakeLists.txt index 3153b2c3..8e69b341 100644 --- a/Samples/3_CUDA_Features/memMapIPCDrv/CMakeLists.txt +++ b/Samples/3_CUDA_Features/memMapIPCDrv/CMakeLists.txt @@ -48,5 +48,5 @@ add_custom_command( # Create a dummy target for fatbin generation add_custom_target(generate_memMapIpc_ptx ALL DEPENDS ${CUDA_PTX_FILE}) -# Ensure matrixMulDrv depends on the fatbin +# Ensure memMapIPCDrv depends on the fatbin add_dependencies(memMapIPCDrv generate_memMapIpc_ptx) diff --git a/Samples/3_CUDA_Features/ptxjit/CMakeLists.txt b/Samples/3_CUDA_Features/ptxjit/CMakeLists.txt index fb45f7fc..a7bef8d1 100644 --- a/Samples/3_CUDA_Features/ptxjit/CMakeLists.txt +++ b/Samples/3_CUDA_Features/ptxjit/CMakeLists.txt @@ -49,5 +49,5 @@ add_custom_command( # Create a dummy target for fatbin generation add_custom_target(generate_ptxjit_ptx ALL DEPENDS ${CUDA_PTX_FILE}) -# Ensure matrixMulDrv depends on the fatbin +# Ensure ptxjit depends on the fatbin add_dependencies(ptxjit generate_ptxjit_ptx)