OpenMC/tests/cpp_unit_tests/CMakeLists.txt
John Tramm 977ade79a1
Replace xtensor with internal Tensor/View classes (#3805)
Co-authored-by: John Tramm <jtramm@gmail.com>
2026-02-17 09:50:38 -06:00

18 lines
433 B
CMake

set(TEST_NAMES
test_distribution
test_file_utils
test_tally
test_interpolate
test_math
test_mcpl_stat_sum
test_mesh
test_region
test_tensor
# Add additional unit test files here
)
foreach(test ${TEST_NAMES})
add_executable(${test} ${test}.cpp)
target_link_libraries(${test} Catch2::Catch2WithMain libopenmc)
add_test(NAME ${test} COMMAND ${test} WORKING_DIRECTORY ${UNIT_TEST_BIN_OUTPUT_DIR})
endforeach()