diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-03-07 16:03:57 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-03-07 16:03:57 (GMT) |
commit | bfb3598c4b4ec2fc41eb6e26ea0dbeb9c55f9176 (patch) | |
tree | cc73222df613e47f7c828bb75b56253db6b7b563 /Source/cmIncludeDirectoryCommand.h | |
parent | 4148fedbf099b3af9fd6d2d4ad8c5de91cd0a956 (diff) | |
download | CMake-bfb3598c4b4ec2fc41eb6e26ea0dbeb9c55f9176.zip CMake-bfb3598c4b4ec2fc41eb6e26ea0dbeb9c55f9176.tar.gz CMake-bfb3598c4b4ec2fc41eb6e26ea0dbeb9c55f9176.tar.bz2 |
BUG: improve bad argument handling for INCLUDE_DIRECTORIES and ADD_DEFINITIONS bug 4364
Diffstat (limited to 'Source/cmIncludeDirectoryCommand.h')
-rw-r--r-- | Source/cmIncludeDirectoryCommand.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmIncludeDirectoryCommand.h b/Source/cmIncludeDirectoryCommand.h index 9247bbb..4c0be37 100644 --- a/Source/cmIncludeDirectoryCommand.h +++ b/Source/cmIncludeDirectoryCommand.h @@ -74,6 +74,10 @@ public: } cmTypeMacro(cmIncludeDirectoryCommand, cmCommand); + +protected: + // used internally + void AddDirectory(const char *arg, bool before, bool system); }; |