klips/cpp/algorithms/sorting/CMakeLists.txt

27 lines
989 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
)
2021-05-25 13:57:16 +00:00
add_subdirectory(bubble)
add_subdirectory(bucket)
add_subdirectory(count)
2021-05-25 22:40:40 +00:00
add_subdirectory(heap)
add_subdirectory(insertion)
add_subdirectory(merge)
2021-05-26 18:12:27 +00:00
add_subdirectory(quick)
2021-05-29 18:23:23 +00:00
add_subdirectory(radix)
add_subdirectory(selection)