klips/cpp/algorithms/sorting/CMakeLists.txt

26 lines
965 B
CMake
Raw Normal View History

###############################################################################
## Author: Shaun Reed ##
## Legal: All Content (c) 2021 Shaun Reed, all rights reserved ##
## About: A root project for practicing sorting algorithms in C++ ##
## ##
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
##############################################################################
#
cmake_minimum_required(VERSION 3.15)
project (
#[[NAME]] Sorting-Algorithms
VERSION 1.0
DESCRIPTION "A project for practicing various sorting algorithms in C++"
LANGUAGES CXX
)
add_subdirectory(merge)
add_subdirectory(selection)
2021-05-25 04:00:44 +00:00
add_subdirectory(insertion)
2021-05-25 13:57:16 +00:00
add_subdirectory(bubble)
2021-05-25 22:40:40 +00:00
add_subdirectory(heap)
2021-05-26 18:12:27 +00:00
add_subdirectory(quick)
2021-05-29 14:23:01 +00:00
add_subdirectory(count)
2021-05-29 16:12:08 +00:00
add_subdirectory(bucket)