summaryrefslogtreecommitdiff
path: root/Tests/MacroTest/context.cmake
diff options
context:
space:
mode:
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 000000000..f4d7035fb
--- /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}")