Merge pull request #8 from jnbntz/cmake_transition

fixing a couple typos in cmakelists files
This commit is contained in:
Rob Armstrong 2025-01-15 08:43:08 -08:00 committed by GitHub
commit b518bfe9be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 8 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

@ -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
add_dependencies(matrixMulDrv generate_fatbin_textureDrv)
# Ensure simpleTextureDrv depends on the fatbin
add_dependencies(simpleTextureDrv generate_fatbin_textureDrv)

View File

@ -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
add_dependencies(matrixMulDrv generate_memMapIpc_ptx)
# Ensure memMapIPCDrv depends on the fatbin
add_dependencies(memMapIPCDrv generate_memMapIpc_ptx)

View File

@ -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
add_dependencies(matrixMulDrv generate_ptxjit_ptx)
# Ensure ptxjit depends on the fatbin
add_dependencies(ptxjit generate_ptxjit_ptx)