diff options
author | Asit Dhal <dhal.asitk@gmail.com> | 2020-10-04 17:44:31 (GMT) |
---|---|---|
committer | Asit Dhal <dhal.asitk@gmail.com> | 2020-10-24 10:00:47 (GMT) |
commit | 03ad0e61c19304ae145cfa0683b43d9756d37ff5 (patch) | |
tree | 4b80c6107710ce8e1ccca1de4ec03ac9232ba024 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 5988a4deea67ed122b30c2c0437f70e074273789 (diff) | |
download | CMake-03ad0e61c19304ae145cfa0683b43d9756d37ff5.zip CMake-03ad0e61c19304ae145cfa0683b43d9756d37ff5.tar.gz CMake-03ad0e61c19304ae145cfa0683b43d9756d37ff5.tar.bz2 |
configure_file: Add option for user defined permissions
User defined permissions and options to copy permissions are
implemented.
Fixes: #20866
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 1ca7de8..0d31c5e 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -676,7 +676,7 @@ void cmVisualStudio10TargetGenerator::Generate() cmStrCat(this->DefaultArtifactDir, "\\nasm.props"); ConvertToWindowsSlash(propsLocal); this->Makefile->ConfigureFile(propsTemplate, propsLocal, false, true, - true, true); + true); Elem(e1, "Import").Attribute("Project", propsLocal); } } |