From 36c62436d24fb0d92ae470bfaf6a0de763626869 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Sat, 11 Jul 2015 20:06:22 -1000 Subject: [PATCH] Forced c++11 abi on --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a3fc526..4f95829 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ include_directories(include) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -D_GLIBCXX_USE_CXX11_ABI=1") add_library(LogVisor lib/LogVisor.cpp include/LogVisor/LogVisor.hpp)