diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-04-05 18:48:25 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-04-05 18:48:25 (GMT) |
commit | af60114ffb320b1a89edb777124b200f1038ac3f (patch) | |
tree | 09c6cd1260eeae3b8efb510109bd6806c7b7af15 /Source/cmAuxSourceDirectoryCommand.cxx | |
parent | eae89e0f886e2026b93415ae659f88e48a7a20d1 (diff) | |
download | CMake-af60114ffb320b1a89edb777124b200f1038ac3f.zip CMake-af60114ffb320b1a89edb777124b200f1038ac3f.tar.gz CMake-af60114ffb320b1a89edb777124b200f1038ac3f.tar.bz2 |
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 8829da6..da9259e 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(); } } } |