diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-04-05 14:48:25 -0400 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-04-05 14:48:25 -0400 |
commit | af60114ffb320b1a89edb777124b200f1038ac3f (patch) | |
tree | 09c6cd1260eeae3b8efb510109bd6806c7b7af15 /Source/cmAuxSourceDirectoryCommand.cxx | |
parent | eae89e0f886e2026b93415ae659f88e48a7a20d1 (diff) | |
download | cmake-af60114ffb320b1a89edb777124b200f1038ac3f.tar.gz |
BUG: fix for bug 1636 add extensions to AUX_SOURCE_DIRECTORY files
Diffstat (limited to 'Source/cmAuxSourceDirectoryCommand.cxx')
-rw-r--r-- | Source/cmAuxSourceDirectoryCommand.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmAuxSourceDirectoryCommand.cxx b/Source/cmAuxSourceDirectoryCommand.cxx index 8829da6268..da9259ec63 100644 --- a/Source/cmAuxSourceDirectoryCommand.cxx +++ b/Source/cmAuxSourceDirectoryCommand.cxx @@ -78,6 +78,8 @@ bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& ar sourceListValue += ";"; } sourceListValue += cmfile.GetSourceName(); + sourceListValue += "."; + sourceListValue += cmfile.GetSourceExtension(); } } } |