From a31baec3e4e9d987ebc6147a416c10dc74749a0d Mon Sep 17 00:00:00 2001 From: Chirag Pandya Date: Fri, 27 Dec 2024 15:10:17 -0800 Subject: [PATCH] Try c++17 to see if libuv errors are resolved Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags: --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e6f6611..b9be05ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,7 +117,7 @@ include_directories(${PROJECT_BINARY_DIR}) # Compiler flags if(NOT MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -fPIC") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -fPIC") endif() # Recurse into main project directory