cudaCAC/kernels/CMakeLists.txt
Alex Selimov 68992c77f5
Some checks failed
Build and Test / build-and-test (push) Failing after 5m3s
Add untested neighborlisting code
2025-09-13 23:11:53 -04:00

19 lines
338 B
CMake

project(${NAME}_cuda_lib CUDA CXX)
set(HEADER_FILES
potentials/pair_potentials.cuh
forces.cuh
kernel_config.cuh
neighbor_list.cuh
)
set(SOURCE_FILES
kernel_config.cu
neighbor_list.cu
)
# The library contains header and source files.
add_library(${NAME}_cuda_lib STATIC
${SOURCE_FILES}
${HEADER_FILES}
)