summaryrefslogtreecommitdiffstats
path: root/Tests/MacroTest/context.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-03-25 14:37:04 (GMT)
committerBrad King <brad.king@kitware.com>2009-03-25 14:37:04 (GMT)
commit5f4686920d3615187c53f3064eb7f1345b2203b2 (patch)
tree58c0329ff54765ffbe6c02d8234620650114292e /Tests/MacroTest/context.cmake
parent5efdefbc27b486c43dabf5dc1549bd12beb52a12 (diff)
downloadCMake-5f4686920d3615187c53f3064eb7f1345b2203b2.zip
CMake-5f4686920d3615187c53f3064eb7f1345b2203b2.tar.gz
CMake-5f4686920d3615187c53f3064eb7f1345b2203b2.tar.bz2
BUG: Fix CMAKE_CURRENT_LIST_FILE in macros
The value of CMAKE_CURRENT_LIST_FILE is supposed to be the list file currently being executed. Before macros were introduced this was always the context of the argument referencing the variable. Our original implementation of macros replaced the context of command arguments inside the macro with that of the arguments of the calling context. This worked recursively, but only worked when macros had at least one argument. Furthermore, it caused parsing errors of the arguments to report the wrong location (calling context instead of line with error). The commit "Improve context for errors in macros" fixed the latter bug by keeping the lexical context of command arguments in macros. It broke evaluation of CMAKE_CURRENT_LIST_FILE because the calling context was no longer preserved in the argument referencing the variable. However, since our list file processing now maintains the proper value of CMAKE_CURRENT_LIST_FILE with dynamic scope we no longer need the context of the argument and can just evaluate the variable normally.
Diffstat (limited to 'Tests/MacroTest/context.cmake')
-rw-r--r--Tests/MacroTest/context.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/MacroTest/context.cmake b/Tests/MacroTest/context.cmake
new file mode 100644
index 0000000..f4d7035
--- /dev/null
+++ b/Tests/MacroTest/context.cmake
@@ -0,0 +1,10 @@
+GET_CURRENT_FILE(current_file)
+IF(NOT "${current_file}" STREQUAL "${CMAKE_CURRENT_LIST_FILE}")
+ MESSAGE(FATAL_ERROR
+ "Macro file context is broken. Expected:\n"
+ " ${CMAKE_CURRENT_LIST_FILE}\n"
+ "but got:\n"
+ " ${current_file}\n"
+ "from the macro."
+ )
+ENDIF(NOT "${current_file}" STREQUAL "${CMAKE_CURRENT_LIST_FILE}")