diff options
author | Brad King <brad.king@kitware.com> | 2015-10-29 12:42:32 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-10-29 12:42:32 (GMT) |
commit | 41e5605d029ac92c9593d69e06c3a56e1d5c40da (patch) | |
tree | 7f9a9d87bfa66d2a9c6272911b377f6a622476d9 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 5cdba31fc631453d530abbac04bf4a455d1f10bb (diff) | |
parent | 77dde5cb1f760d180e145b102997a72baac16c33 (diff) | |
download | CMake-41e5605d029ac92c9593d69e06c3a56e1d5c40da.zip CMake-41e5605d029ac92c9593d69e06c3a56e1d5c40da.tar.gz CMake-41e5605d029ac92c9593d69e06c3a56e1d5c40da.tar.bz2 |
Merge topic 'vs-resw-files'
77dde5cb VS: Add support for `.resw` files (#15811)
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 541e5f6..7da00fa 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1311,6 +1311,10 @@ void cmVisualStudio10TargetGenerator::WriteExtraSource(cmSourceFile const* sf) { tool = "Image"; } + else if(ext == "resw") + { + tool = "PRIResource"; + } else if(ext == "xml") { tool = "XML"; |