diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2021-08-03 13:49:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-08-20 13:35:12 (GMT) |
commit | efe139d1b835d126d7280d5bf615fe8149f923e5 (patch) | |
tree | f42ce23e9a2ee24b93928899ea1357fba859cffd /Tests/RunCMake/cmake_host_system_information/Debian6.cmake | |
parent | 1e65e4a6e5c4870960b998b6f5d6f70965cc9344 (diff) | |
download | CMake-efe139d1b835d126d7280d5bf615fe8149f923e5.zip CMake-efe139d1b835d126d7280d5bf615fe8149f923e5.tar.gz CMake-efe139d1b835d126d7280d5bf615fe8149f923e5.tar.bz2 |
cmake_host_system_information: Can run fallback scripts
Diffstat (limited to 'Tests/RunCMake/cmake_host_system_information/Debian6.cmake')
-rw-r--r-- | Tests/RunCMake/cmake_host_system_information/Debian6.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/RunCMake/cmake_host_system_information/Debian6.cmake b/Tests/RunCMake/cmake_host_system_information/Debian6.cmake new file mode 100644 index 0000000..cbf83a9 --- /dev/null +++ b/Tests/RunCMake/cmake_host_system_information/Debian6.cmake @@ -0,0 +1,5 @@ +cmake_host_system_information(RESULT DEBIAN6 QUERY DISTRIB_INFO) + +foreach(VAR IN LISTS DEBIAN6) + message(STATUS "${VAR}=`${${VAR}}`") +endforeach() |