cudaCAC/src/CMakeLists.txt

18 lines
282 B
Text
Raw Normal View History

project(${NAME}_lib CUDA CXX)
2017-12-28 11:15:19 -07:00
set(HEADER_FILES
2025-04-16 14:01:40 -04:00
particle.hpp
simulation.hpp
box.hpp
pair_potentials.hpp
2017-12-28 11:15:19 -07:00
)
set(SOURCE_FILES
2025-04-16 14:01:40 -04:00
pair_potentials.cpp
2017-12-28 11:15:19 -07:00
)
2025-04-15 14:10:01 -04:00
# The library contains header and source files.
add_library(${NAME}_lib
2025-04-16 14:01:40 -04:00
${HEADER_FILES}
2025-04-15 14:10:01 -04:00
${SOURCE_FILES}
)