cudaCAC/src/CMakeLists.txt
Alex Selimov 5155ec21aa Add basic LJ potential*
- Add PairPotential Abstract class
- Add Lennard-Jones potential that should work with both CUDA and C++
  code
- Add tests on HOST side for LJ potential
2025-04-17 16:07:26 -04:00

16 lines
244 B
CMake

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