Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ set(_aniso_pair_evaluators
TwoPatchMorse
)

set(_chebyshev_symmetries
Null
Cube
Tetrahedron
)

# process bond potentials
foreach(_evaluator ${_bond_evaluators})
configure_file(export_PotentialBond.cc.inc
Expand Down Expand Up @@ -160,6 +166,23 @@ foreach(_evaluator ${_aniso_pair_evaluators})
endif()
endforeach()

# process Chebyshev anisotropic pair potential
foreach(_symmetry ${_chebyshev_symmetries})
configure_file(export_ChebyshevAnisotropicPairPotential.cc.inc
export_ChebyshevAnisotropicPairPotential${_symmetry}.cc
@ONLY)
set(_${COMPONENT_NAME}_sources ${_${COMPONENT_NAME}_sources}
export_ChebyshevAnisotropicPairPotential${_symmetry}.cc)

if (ENABLE_HIP)
configure_file(export_ChebyshevAnisotropicPairPotentialGPU.cc.inc
export_ChebyshevAnisotropicPairPotential${_symmetry}GPU.cc
@ONLY)
set(_${COMPONENT_NAME}_sources ${_${COMPONENT_NAME}_sources}
export_ChebyshevAnisotropicPairPotential${_symmetry}GPU.cc)
endif()
endforeach()

# process velocity field geometries
set(_binning_geometries
Cartesian
Expand Down
Loading
Loading