Skip to content

Commit

Permalink
Fixed CMAKE_CXX_FLAGS overridind -std=gnu++0x (#489)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/geos/trunk@3502 5242fede-7e19-0410-aef8-94bd7d2200fb
  • Loading branch information
mloskot committed Oct 19, 2011
1 parent 2a2a0a7 commit 78329d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -93,7 +93,7 @@ endif()
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)

# General options
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -ansi")
set(CMAKE_CXX_FLAGS "-pedantic -ansi ${CMAKE_CXX_FLAGS}")

# Numerical stability
if(GEOS_ENABLE_FLOATSTORE)
Expand Down

0 comments on commit 78329d3

Please sign in to comment.