diff options
author | Brad King <brad.king@kitware.com> | 2004-08-04 14:45:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-08-04 14:45:11 (GMT) |
commit | b6da1d127196d82c58a3780432e9466b459d8543 (patch) | |
tree | 17a8359a57d7c1de7434c9f836d8e2eace470ca3 /Source/cmMakefile.h | |
parent | 743eed068cbd81747cac0184e7c4a43ce8aab8c3 (diff) | |
download | CMake-b6da1d127196d82c58a3780432e9466b459d8543.zip CMake-b6da1d127196d82c58a3780432e9466b459d8543.tar.gz CMake-b6da1d127196d82c58a3780432e9466b459d8543.tar.bz2 |
ENH: Added support for special variables CMAKE_CURRENT_LIST_FILE and CMAKE_CURRENT_LIST_LINE that evaluate to the file name and line number in which they appear. This implements the feature request from bug 1012.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index d417f74..efca41e 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -558,7 +558,9 @@ public: */ const char *ExpandVariablesInString(std::string& source) const; const char *ExpandVariablesInString(std::string& source, bool escapeQuotes, - bool atOnly = false) const; + bool atOnly = false, + const char* filename = 0, + long line = -1) const; /** * Remove any remaining variables in the string. Anything with ${var} or |