cudaCAC/src/CMakeLists.txt

18 lines
282 B
CMake

project(${NAME}_lib CUDA CXX)
set(HEADER_FILES
particle.hpp
simulation.hpp
box.hpp
pair_potentials.hpp
)
set(SOURCE_FILES
pair_potentials.cpp
)
# The library contains header and source files.
add_library(${NAME}_lib
${HEADER_FILES}
${SOURCE_FILES}
)