16 lines
255 B
CMake
16 lines
255 B
CMake
project(${NAME}_cuda_lib CUDA CXX)
|
|
|
|
set(HEADER_FILES
|
|
pair_potentials.cuh
|
|
forces.cuh
|
|
)
|
|
set(SOURCE_FILES
|
|
forces.cu
|
|
)
|
|
|
|
# The library contains header and source files.
|
|
add_library(${NAME}_cuda_lib STATIC
|
|
${SOURCE_FILES}
|
|
${HEADER_FILES}
|
|
)
|
|
|