From 47cc3f6825733ae974044684e21f686bff74291c Mon Sep 17 00:00:00 2001 From: Krishna Vedala Date: Tue, 26 May 2020 11:37:04 -0400 Subject: [PATCH] fix sorting bin output foldername --- sorting/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/CMakeLists.txt b/sorting/CMakeLists.txt index 9e76c8dec..00877bb61 100644 --- a/sorting/CMakeLists.txt +++ b/sorting/CMakeLists.txt @@ -15,6 +15,6 @@ foreach( testsourcefile ${APP_SOURCES} ) if(OpenMP_CXX_FOUND) target_link_libraries(${testname} OpenMP::OpenMP_CXX) endif() - install(TARGETS ${testname} DESTINATION "bin/strings") + install(TARGETS ${testname} DESTINATION "bin/sorting") endforeach( testsourcefile ${APP_SOURCES} )