typo errors in a few CMakelists files

This commit is contained in:
Jonathan Bentz 2025-01-14 18:09:26 -06:00
parent eacf41c980
commit df9ea79df4
4 changed files with 5 additions and 5 deletions

View File

@ -49,5 +49,5 @@ add_custom_command(
# Create a dummy target for fatbin generation
add_custom_target(generate_fatbin_simpleDrv ALL DEPENDS ${CUDA_FATBIN_FILE})
# Ensure matrixMulDrv depends on the fatbin
add_dependencies(matrixMulDrv generate_fatbin_simpleDrv)
# Ensure simpleDrvRuntime depends on the fatbin
add_dependencies(simpleDrvRuntime generate_fatbin_simpleDrv)

View File

@ -47,4 +47,4 @@ add_custom_command(
add_custom_target(generate_fatbin_textureDrv ALL DEPENDS ${CUDA_FATBIN_FILE})
# Ensure matrixMulDrv depends on the fatbin
add_dependencies(matrixMulDrv generate_fatbin_textureDrv)
add_dependencies(simpleTextureDrv generate_fatbin_textureDrv)

View File

@ -49,4 +49,4 @@ add_custom_command(
add_custom_target(generate_memMapIpc_ptx ALL DEPENDS ${CUDA_PTX_FILE})
# Ensure matrixMulDrv depends on the fatbin
add_dependencies(matrixMulDrv generate_memMapIpc_ptx)
add_dependencies(memMapIPCDrv generate_memMapIpc_ptx)

View File

@ -50,4 +50,4 @@ add_custom_command(
add_custom_target(generate_ptxjit_ptx ALL DEPENDS ${CUDA_PTX_FILE})
# Ensure matrixMulDrv depends on the fatbin
add_dependencies(matrixMulDrv generate_ptxjit_ptx)
add_dependencies(ptxjit generate_ptxjit_ptx)