aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brand <[email protected]>2014-01-10 02:20:11 +0000
committerMark Brand <[email protected]>2014-03-26 22:35:00 +0000
commit266267be54c5bdc068b68ad61e664ab7c5d32f04 (patch)
treeb2897bd8150e250920a20b0181321cdd8aff7f03
parentMerge pull request #72 from mabrand/fix3 (diff)
downloadvmime-266267be54c5bdc068b68ad61e664ab7c5d32f04.tar.gz
vmime-266267be54c5bdc068b68ad61e664ab7c5d32f04.zip
remove -ansi because it interferes with -std=c++11
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index aac379cc..9aa0283b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1020,7 +1020,7 @@ ELSE()
SET(
CMAKE_CXX_FLAGS
- "${CMAKE_CXX_FLAGS} -D_REENTRANT=1 -W -Wall -ansi -pedantic -Wpointer-arith -Wold-style-cast -Wconversion -Wcast-align -Wno-long-long"
+ "${CMAKE_CXX_FLAGS} -D_REENTRANT=1 -W -Wall -pedantic -Wpointer-arith -Wold-style-cast -Wconversion -Wcast-align -Wno-long-long"
CACHE STRING
"g++ Compiler Flags"
FORCE