2024-12-12 09:02:53 -08:00

13 lines
289 B
CMake

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