diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2013-08-29 18:43:54 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2013-11-19 16:48:18 (GMT) |
commit | 4a352d43bbe3c8726046683e7dbc89a55b5e1c67 (patch) | |
tree | 8d1873725ec19a5ef1023ee6370de7155f5cd416 /Source/cmExternalMakefileProjectGenerator.cxx | |
parent | 1da77bf1ee4f3ba315ebb00da2eaeac474614cad (diff) | |
download | CMake-4a352d43bbe3c8726046683e7dbc89a55b5e1c67.zip CMake-4a352d43bbe3c8726046683e7dbc89a55b5e1c67.tar.gz CMake-4a352d43bbe3c8726046683e7dbc89a55b5e1c67.tar.bz2 |
Notify extra generators about languages
Some generators can use the any enabled languages to add extra support
in the relevant build tool. One such is Eclipse since there are many
plugins available for various languages.
Diffstat (limited to 'Source/cmExternalMakefileProjectGenerator.cxx')
-rw-r--r-- | Source/cmExternalMakefileProjectGenerator.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmExternalMakefileProjectGenerator.cxx b/Source/cmExternalMakefileProjectGenerator.cxx index 9c965cc..0d42c35 100644 --- a/Source/cmExternalMakefileProjectGenerator.cxx +++ b/Source/cmExternalMakefileProjectGenerator.cxx @@ -13,6 +13,12 @@ #include "cmExternalMakefileProjectGenerator.h" +void cmExternalMakefileProjectGenerator +::EnableLanguage(std::vector<std::string> const&, + cmMakefile *, bool) +{ +} + std::string cmExternalMakefileProjectGenerator::CreateFullGeneratorName( const char* globalGenerator, const char* extraGenerator) |