代码拉取完成,页面将自动刷新
cmake_minimum_required (VERSION 2.6)
project (Sorting)
# The version number
set (Sorting_VERSION_MAJOR 1)
set (Sorting_VERSION_MINOR 0)
# configure a header file to pass some of the CMake settings
# to the source code
configure_file (
"${PROJECT_SOURCE_DIR}/sorting/SortingConfig.h.in"
"${PROJECT_BINARY_DIR}/SortingConfig.h"
)
# add the binary tree to the search path for include files
# so that we will find TutorialConfig.h
include_directories("${PROJECT_BINARY_DIR}")
# add the executable
set(EXECUTABLE_OUTPUT_PATH bins)
add_executable(01bubble_sort sorting/01bubble_sort.cpp)
add_executable(02select_sort sorting/02select_sort.cpp)
add_executable(03insertion_sort sorting/03insertion_sort.cpp)
add_executable(04shell_sort sorting/04shell_sort.cpp)
add_executable(05quik_sort sorting/05quik_sort.cpp)
add_executable(06merge_sort sorting/06merge_sort.cpp)
add_executable(07heap_sort sorting/07heap_sort.cpp)
add_executable(08count_sort sorting/08count_sort.cpp)
add_executable(09bucket_sort sorting/09bucket_sort.cpp)
add_executable(10radix_sort sorting/10radix_sort.cpp)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。