Skip to content

Commit d5b123b

Browse files
committed
Sets c++ to 11
1 parent a6c591a commit d5b123b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.10)
33
project(cpp-dotenv VERSION 0.1.0)
44

5-
set(CMAKE_CXX_STANDARD 14)
5+
set(CMAKE_CXX_STANDARD 11)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)
77

88
#----------------------- LIBRARY CONFIGURATION -------------------------

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ auto& dotenv = env; // 'auto' here is 'dotenv::dotenv'
4646

4747
```cmake
4848
add_subdirectory(cpp-dotenv)
49+
```
4950

50-
...
51-
51+
```cmake
5252
target_link_libraries(YOUR_TARGET ${CPP_DOTENV_LIB})
5353
```
5454

0 commit comments

Comments
 (0)