2024-12-11 20:24:08 +00:00

12 lines
274 B
CMake

# Include directories and libraries
include_directories(../../../Common)
# Source file
set(SRC_FILES
matrixMulDrv.cu
)
# Add target for matrixMulDrv
add_executable(matrixMulDrv ${SRC_FILES})
set_target_properties(matrixMulDrv PROPERTIES CUDA_SEPARABLE_COMPILATION ON)