forked from iml130/sola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
25 lines (21 loc) · 908 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cmake_minimum_required(VERSION 3.19)
#-------------------------------------------------------------------------------
# Project configuration
#-------------------------------------------------------------------------------
project(sola_mono VERSION 1.0.0)
set(CMAKE_CXX_STANDARD 17)
# Set build type default to Debug
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug")
endif()
#-------------------------------------------------------------------------------
# General third-party dependencies
#-------------------------------------------------------------------------------
add_subdirectory(third_party/Catch2)
#-------------------------------------------------------------------------------
# Add individual projects
#-------------------------------------------------------------------------------
add_subdirectory(solanet)
add_subdirectory(minhton)
add_subdirectory(natter)
add_subdirectory(sola)