Skip to content

Commit

Permalink
build test with c++14 (forced by gtest)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmwsharp committed Oct 1, 2024
1 parent 566cf90 commit 259985d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STR

# using Clang (linux or apple) or GCC
message("Using clang/gcc compiler flags")
SET(BASE_CXX_FLAGS "-std=c++11 -Wall -Wextra -g3")
SET(BASE_CXX_FLAGS "-std=c++14 -Wall -Wextra -g3")
SET(CMAKE_CXX_FLAGS_DEBUG "")
SET(DISABLED_WARNINGS " -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-deprecated-declarations -Wno-missing-braces -Wno-unused-private-field")
SET(TRACE_INCLUDES " -H -Wno-error=unused-command-line-argument")
Expand Down

0 comments on commit 259985d

Please sign in to comment.