Require C++14

This commit is contained in:
Martchus 2017-02-05 19:19:15 +01:00
parent c13eee6fcc
commit 96c4e24b6c
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ The library utilizes:
## Build instructions ## Build instructions
### Requirements ### Requirements
#### Build-only dependencies #### Build-only dependencies
* C++ compiler supporting C++11, tested with * C++ compiler supporting C++14, tested with
- GNU g++ - GNU g++
- Clang - Clang
- mingw-w64 g++ - mingw-w64 g++
@ -34,7 +34,7 @@ The library utilizes:
#### Runtime dependencies #### Runtime dependencies
* The c++utilities library itself only needs * The c++utilities library itself only needs
- C/C++ standard library supporting C++11 - C/C++ standard library supporting C++14
- libiconv (might be part of glibc or provided as extra library) - libiconv (might be part of glibc or provided as extra library)
* For dependencies of my other projects check the README.md of these projects. * For dependencies of my other projects check the README.md of these projects.

View File

@ -17,9 +17,9 @@ if(NOT META_GENERIC_NAME)
set(META_GENERIC_NAME "${META_APP_NAME}") set(META_GENERIC_NAME "${META_APP_NAME}")
endif() endif()
# set default CXX_STANDARD for all library, application and test targets to 11 # set default CXX_STANDARD for all library, application and test targets
if(NOT META_CXX_STANDARD) if(NOT META_CXX_STANDARD)
set(META_CXX_STANDARD 11) set(META_CXX_STANDARD 14)
endif() endif()
# provide variables for other projects built as part of the same subdirs project # provide variables for other projects built as part of the same subdirs project