Bump the C++ standard flag up to -c++14

… the current version of `kj` requires C++14 at a minimum; this change keeps the build of `capnpc-java` from erroring out.
This commit is contained in:
Alexander Böhn 2020-03-03 21:51:21 -05:00 committed by David Renshaw
parent 4f514ad1a0
commit 37d067797a

View file

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.9)
find_package(PkgConfig REQUIRED)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 14)
set(CAPNPC_JAVA_SOURCES ../compiler/src/main/cpp/capnpc-java.c++)
if(CAPNP_PKG_PATH)