| 3842 | } |
| 3843 | |
| 3844 | void cmVisualStudio10TargetGenerator::WriteRCOptions( |
| 3845 | Elem& e1, std::string const& configName) |
| 3846 | { |
| 3847 | if (!this->MSTools) { |
| 3848 | return; |
| 3849 | } |
| 3850 | Elem e2(e1, "ResourceCompile"); |
| 3851 | |
| 3852 | OptionsHelper rcOptions(*(this->RcOptions[configName]), e2); |
| 3853 | rcOptions.OutputPreprocessorDefinitions("RC"); |
| 3854 | rcOptions.OutputAdditionalIncludeDirectories("RC"); |
| 3855 | rcOptions.PrependInheritedString("AdditionalOptions"); |
| 3856 | rcOptions.OutputFlagMap(); |
| 3857 | } |
| 3858 | |
| 3859 | bool cmVisualStudio10TargetGenerator::ComputeCudaOptions() |
| 3860 | { |
no test coverage detected