From 955db613442d2720c251cc98df6b4ad7581f47a5 Mon Sep 17 00:00:00 2001 From: Shawn Presser Date: Fri, 12 Apr 2019 17:10:59 -0500 Subject: [PATCH] Fix cmake build / update CMakeLists.txt to use C++11 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a89aced..ed4eff5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,3 +13,4 @@ file(GLOB yogacore_SRC yoga/*.cpp) add_library(yogacore STATIC ${yogacore_SRC}) target_link_libraries(yogacore android log) +set_target_properties(yogacore PROPERTIES CXX_STANDARD 11)