diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2019-12-08 00:26:14 (GMT) |
---|---|---|
committer | Alex Turbov <i.zaufi@gmail.com> | 2019-12-10 14:43:27 (GMT) |
commit | 90e3e2a7778dc0ec5b421e9657ec49936a3cf174 (patch) | |
tree | 6788ff83fc4a9cd7e0e87a2f33f7a3cf0d87d216 /Tests/RunCMake/CMakeLists.txt | |
parent | dd54290dab61c3342866c71052145271c13468ad (diff) | |
download | CMake-90e3e2a7778dc0ec5b421e9657ec49936a3cf174.zip CMake-90e3e2a7778dc0ec5b421e9657ec49936a3cf174.tar.gz CMake-90e3e2a7778dc0ec5b421e9657ec49936a3cf174.tar.bz2 |
cmFunctionCommand: Introduce `CMAKE_CURRENT_FUNCTION*` variables
`CMAKE_CURRENT_FUNCTION`
Can be used for diagnostic or debugging messages like the
`__PRETTY_FUNCTION__` macro of GCC.
`CMAKE_CURRENT_FUNCTION_LIST_DIR`
Eliminates the necessity of the additional "global"
variables inside a module used to access additional "resource"
files from functions defined in the module.
...
Diffstat (limited to 'Tests/RunCMake/CMakeLists.txt')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 31b280b..18ac6f9 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -272,6 +272,7 @@ add_RunCMake_test(find_package) add_RunCMake_test(find_path) add_RunCMake_test(find_program -DCMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}) add_RunCMake_test(foreach) +add_RunCMake_test(function) add_RunCMake_test(get_filename_component) add_RunCMake_test(get_property) add_RunCMake_test(if) |