Files
phasicFlow/src/Particles/CMakeLists.txt

42 lines
1.2 KiB
CMake
Raw Normal View History

2022-09-05 01:56:29 +04:30
set(SourceFiles
2022-12-10 01:32:54 +03:30
dynamicPointStructure/dynamicPointStructure.cpp
particles/shape/baseShapeNames.cpp
particles/shape/shape.cpp
2022-12-10 01:32:54 +03:30
particles/particles.cpp
particles/particleIdHandler/particleIdHandler.cpp
particles/regularParticleIdHandler/regularParticleIdHandler.cpp
SphereParticles/sphereShape/sphereShape.cpp
SphereParticles/sphereParticles/sphereParticles.cpp
2024-01-26 01:10:10 -08:00
SphereParticles/sphereParticles/sphereParticlesKernels.cpp
2024-11-17 10:19:40 +03:30
GrainParticles/grainShape/grainShape.cpp
GrainParticles/grainParticles/grainParticles.cpp
GrainParticles/grainParticles/grainParticlesKernels.cpp
2024-10-18 23:13:20 +03:30
SphereParticles/boundarySphereParticles.cpp
SphereParticles/boundarySphereParticlesList.cpp
2024-11-17 10:19:40 +03:30
GrainParticles/boundaryGrainParticles.cpp
GrainParticles/boundaryGrainParticlesList.cpp
Insertion/collisionCheck/collisionCheck.cpp
Insertion/insertionRegion/insertionRegion.cpp
Insertion/insertion/insertion.cpp
Insertion/shapeMixture/shapeMixture.cpp
Insertion/Insertion/Insertions.cpp
2022-09-05 01:56:29 +04:30
)
if(pFlow_Build_MPI)
list(APPEND SourceFiles
2024-10-18 23:13:20 +03:30
particles/MPIParticleIdHandler/MPIParticleIdHandler.cpp
SphereParticles/processorBoundarySphereParticles.cpp)
endif()
2022-09-05 01:56:29 +04:30
set(link_libs Kokkos::kokkos phasicFlow Integration Property)
pFlow_add_library_install(Particles SourceFiles link_libs)