diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-10 17:50:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-10 17:50:44 (GMT) |
commit | aae0bcdacfb9cfc10769452895fbc96c43add1d6 (patch) | |
tree | 3e4b14a2a3e3e6bb5e1f9c1b0e32da0224993664 /Source/cmAuxSourceDirectoryCommand.cxx | |
parent | 26e75041fa1b5198ef6cc6372c9b529a8189e649 (diff) | |
download | CMake-aae0bcdacfb9cfc10769452895fbc96c43add1d6.zip CMake-aae0bcdacfb9cfc10769452895fbc96c43add1d6.tar.gz CMake-aae0bcdacfb9cfc10769452895fbc96c43add1d6.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmAuxSourceDirectoryCommand.cxx')
-rw-r--r-- | Source/cmAuxSourceDirectoryCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmAuxSourceDirectoryCommand.cxx b/Source/cmAuxSourceDirectoryCommand.cxx index 892ed4a..37dee8c 100644 --- a/Source/cmAuxSourceDirectoryCommand.cxx +++ b/Source/cmAuxSourceDirectoryCommand.cxx @@ -20,7 +20,8 @@ #include <cmsys/Directory.hxx> // cmAuxSourceDirectoryCommand -bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& args) +bool cmAuxSourceDirectoryCommand::InitialPass +(std::vector<std::string> const& args) { if(args.size() < 2 || args.size() > 2) { @@ -68,7 +69,8 @@ bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& ar // add the file as a class file so // depends can be done cmSourceFile cmfile; - cmfile.SetName(fullname.c_str(), this->Makefile->GetCurrentDirectory(), + cmfile.SetName(fullname.c_str(), + this->Makefile->GetCurrentDirectory(), this->Makefile->GetSourceExtensions(), this->Makefile->GetHeaderExtensions()); cmfile.SetProperty("ABSTRACT","0"); |