diff options
author | Soo-Hwan Na <whiteshell2544@naver.com> | 2024-02-27 09:52:48 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 09:52:48 +0900 |
commit | 159895fbd32f10b3f955c8f0b3ef7326e784cfe9 (patch) | |
tree | 6f45f6aeabbac90784c9b4c143f8d735abba053c | |
parent | f1c2dbad1c9674f82e61b7cf76cdc618a2dba852 (diff) |
tgbot-cpp: Update C++ STL to 17
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 290d201..fcc1bc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ option(BUILD_SHARED_LIBS "Build tgbot-cpp shared/static library." OFF) option(BUILD_DOCUMENTATION "Build doxygen API documentation." OFF) # sources -set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) if(WIN32) |