diff options
author | David Cole <david.cole@kitware.com> | 2011-02-03 02:17:23 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-02-03 02:19:01 (GMT) |
commit | 106958c047c9af783b0216916c8e0d8c52595ff6 (patch) | |
tree | bf0cf3c08822dda3fe0cdf360128f971e89d3e4f /Source/cmake.h | |
parent | 94d1684a8fd0de4310874cd582636a8e26402da2 (diff) | |
download | CMake-106958c047c9af783b0216916c8e0d8c52595ff6.zip CMake-106958c047c9af783b0216916c8e0d8c52595ff6.tar.gz CMake-106958c047c9af783b0216916c8e0d8c52595ff6.tar.bz2 |
Add CMAKE_ARGC and CMAKE_ARGV0..N-1 variables (#2828)
For now, these variables are only available in -P script mode.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 1bb42d3..7c75c2f 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -406,7 +406,7 @@ protected: bool DoSuppressDevWarnings; ///! read in a cmake list file to initialize the cache - void ReadListFile(const char *path); + void ReadListFile(const std::vector<std::string>& args, const char *path); ///! Check if CMAKE_CACHEFILE_DIR is set. If it is not, delete the log file. /// If it is set, truncate it to 50kb |