summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Tanous <ed.tanous@intel.com>2018-10-17 00:58:20 +0300
committerEd Tanous <ed.tanous@intel.com>2018-10-18 22:13:13 +0300
commit6228874eaee82201e59d21d2f0b443d4b967c168 (patch)
treeabfd88eb8d08139cd66665c37cfbbc5cc383a7c4
parent6141c8b207b68a3df5698bb8d8ce05019b36e4da (diff)
downloadbmcweb-6228874eaee82201e59d21d2f0b443d4b967c168.tar.xz
bmcweb: Move to C++17
Move to c++ 17 to use some of the new features like std::variant, std::optional, ect Change-Id: I6d1d4a3ceb863256309641d29a2eb99ce44bef32 Signed-off-by: Ed Tanous <ed.tanous@intel.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 45dbb61f50..184a5012d7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -42,7 +42,7 @@ project (bmc-webserver CXX)
include (CTest)
-set (CMAKE_CXX_STANDARD 14)
+set (CMAKE_CXX_STANDARD 17)
set (CMAKE_CXX_STANDARD_REQUIRED ON)
set (CMAKE_EXPORT_COMPILE_COMMANDS ON)