From f4aabaa4cef57634f0145e4436fa508ca23a10f8 Mon Sep 17 00:00:00 2001 From: "Daniel R. Reynolds" Date: Wed, 6 Dec 2023 22:27:30 -0600 Subject: [PATCH] Fixed .out file installation target --- examples/ida/F2003_openmp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ida/F2003_openmp/CMakeLists.txt b/examples/ida/F2003_openmp/CMakeLists.txt index 41dfd0b519..66bc1b741b 100644 --- a/examples/ida/F2003_openmp/CMakeLists.txt +++ b/examples/ida/F2003_openmp/CMakeLists.txt @@ -74,7 +74,7 @@ foreach(example_tuple ${FIDA_examples_OMP}) # install example source and out files if(EXAMPLES_INSTALL) - install(FILES ${example} ${example}.out + install(FILES ${example} ${test_name}.out DESTINATION ${EXAMPLES_INSTALL_PATH}/ida/F2003_opemp) endif() endforeach(example_tuple ${FIDA_examples_OMP})