diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-02-24 10:04:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-02-24 10:04:19 +0200 |
commit | 31d70f7c67d1ea0b920538d50001b8e26d013d28 (patch) | |
tree | fad1a8888197c07ea710f18c6ae7535638b29f0b /composite/makefile | |
parent | 1f2834e458c4c28fe3264968a80f451636c232e4 (diff) |
C++11 support (pass --std ODB compiler option in build makefiles)
Diffstat (limited to 'composite/makefile')
-rw-r--r-- | composite/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/composite/makefile b/composite/makefile index 024bf7e..40f72cf 100644 --- a/composite/makefile +++ b/composite/makefile @@ -106,7 +106,12 @@ $(call include,$(bld_root)/meta/vc9proj.make) $(call include,$(bld_root)/meta/vc10proj.make) $(call include,$(bld_root)/meta/automake.make) +$(call include,$(bld_root)/cxx/standard.make) # cxx_standard +ifdef cxx_standard +$(gen): odb_options += --std $(cxx_standard) $(call include,$(odb_rules)) +endif + $(call include,$(bld_root)/cxx/cxx-d.make) $(call include,$(bld_root)/cxx/cxx-o.make) $(call include,$(bld_root)/cxx/o-e.make) |