https://github.com/Kitware/CMake
Raw File
Tip revision: f65cebf51a2cf3af2017fd9b03c685c77da00c74 authored by Brad King on 27 October 2021, 13:51:39 UTC
CMake 3.21.4
Tip revision: f65cebf
CMakeLists.txt

# To ensure maximum portability across various compilers and platforms
# deactivate any compiler extensions
set(CMAKE_CXX_EXTENSIONS FALSE)

# source files for CMake std library
set(SRCS cm/bits/fs_path.cxx
         cm/bits/string_view.cxx
         cm/filesystem
         cm/memory
         cm/optional
         cm/shared_mutex
         cm/string_view
         cm/utility
         cmext/string_view)

add_library(cmstd STATIC ${SRCS})
back to top