mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-27 18:21:30 +01:00
12 lines
285 B
CMake
12 lines
285 B
CMake
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# Source file
|
|
set(SRC_FILES
|
|
fp16ScalarProduct.cu
|
|
)
|
|
|
|
# Add target for asyncAPI
|
|
add_executable(fp16ScalarProduct ${SRC_FILES})
|
|
set_target_properties(fp16ScalarProduct PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|