2022-03-31 20:01:08 +00:00
|
|
|
################################################################################
|
|
|
|
## Author: Shaun Reed ##
|
|
|
|
## Legal: All Content (c) 2022 Shaun Reed, all rights reserved ##
|
|
|
|
## About: A root project for practicing C++ ##
|
|
|
|
## This project can be built to debug and run all nested projects ##
|
|
|
|
## Or, any subdirectory with a project() statement can be selected ##
|
|
|
|
## ##
|
|
|
|
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
|
|
|
################################################################################
|
|
|
|
|
2021-04-28 03:42:12 +00:00
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
|
|
|
|
project(
|
|
|
|
#[[NAME]] Klips
|
|
|
|
VERSION 1.0
|
|
|
|
DESCRIPTION "A root project for several small cpp practice projects"
|
|
|
|
LANGUAGES CXX
|
|
|
|
)
|
|
|
|
|
2022-01-07 16:26:00 +00:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
2022-03-31 21:35:47 +00:00
|
|
|
add_compile_options("-Wall")
|
2022-01-07 16:26:00 +00:00
|
|
|
|
2021-05-05 03:07:39 +00:00
|
|
|
add_subdirectory(algorithms)
|
2022-12-18 13:52:03 +00:00
|
|
|
add_subdirectory(catch2)
|
2022-01-31 13:51:50 +00:00
|
|
|
add_subdirectory(cmake-example)
|
2021-07-20 15:21:59 +00:00
|
|
|
add_subdirectory(cryptography)
|
2021-04-28 03:42:12 +00:00
|
|
|
add_subdirectory(datastructs)
|
2021-05-29 19:08:39 +00:00
|
|
|
add_subdirectory(graphics)
|
2022-04-01 14:13:56 +00:00
|
|
|
add_subdirectory(multithreading)
|
2022-12-18 13:52:03 +00:00
|
|
|
add_subdirectory(patterns)
|
|
|
|
add_subdirectory(qt)
|