Moved boost flags to CMakeLists

dev-ui
Piotr Dziwinski 2013-03-27 20:53:28 +01:00
parent 672abbbbca
commit 8301a3639b
2 changed files with 6 additions and 5 deletions

View File

@ -67,10 +67,15 @@ else()
"Supported compilers at this time are GCC 4.6+ and clang.")
endif()
# Global compile flags
# These are specific to GCC/MinGW/clang; for other compilers, change as necessary
# The flags are used throughout src/ and test/ subdirs
set(COLOBOT_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wold-style-cast ${CXX11_FLAGS}")
# Special flags for boost
set(Boost_FLAGS "-DBOOST_NO_SCOPED_ENUMS -DBOOST_NO_CXX11_SCOPED_ENUMS")
set(COLOBOT_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wold-style-cast ${CXX11_FLAGS} ${Boost_FLAGS}")
set(COLOBOT_CXX_FLAGS_RELEASE "-O2")
set(COLOBOT_CXX_FLAGS_DEBUG "-g -O0")

View File

@ -23,10 +23,6 @@
#include "common/singleton.h"
// this is just to fix problem with undefined reference when compiling with c++11 support
#define BOOST_NO_SCOPED_ENUMS
#define BOOST_NO_CXX11_SCOPED_ENUMS
#include <boost/property_tree/ptree.hpp>
#include <boost/filesystem.hpp>
#include <boost/algorithm/string/replace.hpp>