diff options
author | Brad King <brad.king@kitware.com> | 2012-03-19 15:25:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-03-19 21:13:41 (GMT) |
commit | 328c0f65c2a273c6adcdb11f96ee057d80014de2 (patch) | |
tree | f96b61b78fe9e94331ebba7c5433fabdbcff9244 /Source/cmGeneratorTarget.h | |
parent | 93d5509b5b1c208f3ed28daf35f9384ab6918441 (diff) | |
download | CMake-328c0f65c2a273c6adcdb11f96ee057d80014de2.zip CMake-328c0f65c2a273c6adcdb11f96ee057d80014de2.tar.gz CMake-328c0f65c2a273c6adcdb11f96ee057d80014de2.tar.bz2 |
Simplify cmVisualStudio10TargetGenerator source classification
Combine WriteCLSources and WriteObjSources into a single method. Use
the cmGeneratorTarget source classification to simplify tool selection
for each source file. Extend the classification to handle .idl files.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 6319d82..3e50656 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -38,6 +38,7 @@ public: std::vector<cmSourceFile*> ObjectSources; std::vector<cmSourceFile*> ExternalObjects; std::vector<cmSourceFile*> OSXContent; + std::vector<cmSourceFile*> IDLSources; std::string ModuleDefinitionFile; std::map<cmSourceFile const*, std::string> Objects; |