You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
436 B
18 lines
436 B
|
|
# 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})
|