diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-11-03 03:32:39 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-11-03 03:32:39 (GMT) |
commit | ef74458b34dcf2d25b3948c535d59273c2307546 (patch) | |
tree | 3bc5ea621a5d171395e19666ae8515109bd95e79 /Source/cmMakefile.h | |
parent | 2fcf59b96b6ac41a1963c8b0f2b06d61c8f255a2 (diff) | |
download | CMake-ef74458b34dcf2d25b3948c535d59273c2307546.zip CMake-ef74458b34dcf2d25b3948c535d59273c2307546.tar.gz CMake-ef74458b34dcf2d25b3948c535d59273c2307546.tar.bz2 |
Add optional BEFORE param to INCLUDE_DIRECTORIES so that include dirs can be specified before the actual include dirs
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 60d028e..1de4656 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -218,7 +218,7 @@ public: /** * Add an include directory to the build. */ - void AddIncludeDirectory(const char*); + void AddIncludeDirectory(const char*, bool before = false); /** * Add a variable definition to the build. This variable |