mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-24 08:41:23 +01:00
17 lines
357 B
CMake
17 lines
357 B
CMake
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# Source file
|
|
set(SRC_FILES
|
|
bisect_large.cu
|
|
bisect_small.cu
|
|
bisect_util.cu
|
|
gerschgorin.cpp
|
|
main.cu
|
|
matlab.cpp
|
|
)
|
|
|
|
# Add target for eigenvalues
|
|
add_executable(eigenvalues ${SRC_FILES})
|
|
set_target_properties(eigenvalues PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|