GTKMM now requires C++ 2011

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2015-10-13 10:04:09 -04:00
parent 08394c3168
commit 21f13b32c0
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ if CONFIG_DEBUG == True:
class OEnvironment(Environment):
def __init__(self, CCFLAGS = CONFIG_CCFLAGS):
Environment.__init__(self, CCFLAGS = CCFLAGS)
self.Append(CXXFLAGS = "-std=c++11");
self.Append(CPPPATH = os.path.abspath("include"))
self.Append(CXXCOMSTR = "C++ $TARGET")
self.Append(CCCOMSTR = "CC $TARGET")