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