rename computer.... folder to numerical methods

This commit is contained in:
Krishna Vedala
2020-06-04 07:41:08 -04:00
parent ebeaebe30d
commit 1116ab2bab
8 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ add_subdirectory(sorting)
add_subdirectory(geometry)
add_subdirectory(probability)
add_subdirectory(machine_learning)
add_subdirectory(computer_oriented_statistical_methods)
add_subdirectory(numerical_methods)
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})

View File

@@ -13,6 +13,6 @@ foreach( testsourcefile ${APP_SOURCES} )
if(OpenMP_CXX_FOUND)
target_link_libraries(${testname} OpenMP::OpenMP_CXX)
endif()
install(TARGETS ${testname} DESTINATION "bin/stats")
install(TARGETS ${testname} DESTINATION "bin/numerical_methods")
endforeach( testsourcefile ${APP_SOURCES} )