OpenMC/tests/cpp_unit_tests/CMakeLists.txt
2023-05-01 22:00:45 -05:00

12 lines
341 B
CMake

set(TEST_NAMES
test_distribution
test_file_utils
test_tally
# 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()