diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-03 16:03:41 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-03 16:03:41 (GMT) |
commit | c2ef51e1816fa9b82b1319b5c5c3cbfc3256cea1 (patch) | |
tree | 7381defd6dbc2d6532291eecb6c00d5c17b8f5f4 /Source/cmLocalGenerator.cxx | |
parent | 652823dc8356272b0253718f56a9693872785cc9 (diff) | |
download | CMake-c2ef51e1816fa9b82b1319b5c5c3cbfc3256cea1.zip CMake-c2ef51e1816fa9b82b1319b5c5c3cbfc3256cea1.tar.gz CMake-c2ef51e1816fa9b82b1319b5c5c3cbfc3256cea1.tar.bz2 |
ENH: define language extensions in cmake files and not hard coded, also fix trycompile problem
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 16d0609..131c6ff 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -517,3 +517,10 @@ std::string cmLocalGenerator::ConvertToRelativeOutputPath(const char* p) ret = cmSystemTools::ConvertToOutputPath(ret.c_str()); return ret; } + + +const char* cmLocalGenerator::GetFileLanguage(const char* ext) +{ + // fill a map of languages enabled + return 0; +} |