diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-13 00:00:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-07 14:48:44 (GMT) |
commit | 913394af249d6b1892a6e609d2abfed001fa1dc4 (patch) | |
tree | 484096975102a7da96f95e184d48aff7f6393492 /Source/cmTarget.cxx | |
parent | 8238a6cd5d2867e709e87a752e0a24c7c2bf28f0 (diff) | |
download | CMake-913394af249d6b1892a6e609d2abfed001fa1dc4.zip CMake-913394af249d6b1892a6e609d2abfed001fa1dc4.tar.gz CMake-913394af249d6b1892a6e609d2abfed001fa1dc4.tar.bz2 |
cmTarget: Add CXX_STANDARD and CXX_EXTENSION target properties.
These are used to determine whether to add -std=c++11, -std=gnu++11
etc flags on the compile line.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index d28ac3f..53c0205 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -307,6 +307,8 @@ void cmTarget::SetMakefile(cmMakefile* mf) this->SetPropertyDefault("MACOSX_BUNDLE", 0); this->SetPropertyDefault("MACOSX_RPATH", 0); this->SetPropertyDefault("NO_SYSTEM_FROM_IMPORTED", 0); + this->SetPropertyDefault("CXX_STANDARD", 0); + this->SetPropertyDefault("CXX_EXTENSIONS", 0); } // Collect the set of configuration types. |