summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkDirectoriesCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmLinkDirectoriesCommand.h')
-rw-r--r--Source/cmLinkDirectoriesCommand.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/Source/cmLinkDirectoriesCommand.h b/Source/cmLinkDirectoriesCommand.h
index 8e04baf..7014a69 100644
--- a/Source/cmLinkDirectoriesCommand.h
+++ b/Source/cmLinkDirectoriesCommand.h
@@ -28,28 +28,24 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
- {
- return new cmLinkDirectoriesCommand;
- }
+ virtual cmCommand* Clone() { return new cmLinkDirectoriesCommand; }
/**
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus &status);
+ cmExecutionStatus& status);
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual std::string GetName() const { return "link_directories";}
+ virtual std::string GetName() const { return "link_directories"; }
cmTypeMacro(cmLinkDirectoriesCommand, cmCommand);
+
private:
void AddLinkDir(std::string const& dir);
};
-
-
#endif