-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
31 lines (26 loc) · 879 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
26
27
28
29
30
31
# Copyright 2019 by Martin Moene
#
# https://github.com/martinmoene/nonstd-lite
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
cmake_minimum_required( VERSION 3.5 )
# nonstd-lite project and version:
project(
nonstd_lite
VERSION 0.1.0
# DESCRIPTION "A collection of C++17-like types for C++98, C++11 and later as single-file header-only libraries"
# HOMEPAGE_URL "https://github.com/martinmoene/nonstd-lite"
LANGUAGES CXX )
add_subdirectory( any )
add_subdirectory( byte )
add_subdirectory( expected )
add_subdirectory( observer-ptr )
add_subdirectory( optional )
add_subdirectory( ring-span )
add_subdirectory( span )
add_subdirectory( status-value )
add_subdirectory( string-view )
add_subdirectory( value-ptr )
add_subdirectory( variant )
# end of file