2024-12-12 11:11:51 -08:00

12 lines
270 B
CMake

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