diff options
author | Jiri Malak <malak.jiri@gmail.com> | 2020-04-13 21:29:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-04-14 13:48:50 (GMT) |
commit | 06e2c541150454aa0d94738c5c8368f087e39509 (patch) | |
tree | f862bf3ab46a051a50d34bb365bafe1180af278a | |
parent | eb28858586e0bb1be60ddcdc02fa8b649ebc69f0 (diff) | |
download | CMake-06e2c541150454aa0d94738c5c8368f087e39509.zip CMake-06e2c541150454aa0d94738c5c8368f087e39509.tar.gz CMake-06e2c541150454aa0d94738c5c8368f087e39509.tar.bz2 |
CMakePrintSystemInformation: Add CMAKE_SYSTEM_PROCESSOR
-rw-r--r-- | Modules/CMakePrintSystemInformation.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakePrintSystemInformation.cmake b/Modules/CMakePrintSystemInformation.cmake index 8d5cf5c..d44e933 100644 --- a/Modules/CMakePrintSystemInformation.cmake +++ b/Modules/CMakePrintSystemInformation.cmake @@ -11,7 +11,7 @@ This module serves diagnostic purposes. Just include it in a project to see various internal CMake variables. #]=======================================================================] -message("CMAKE_SYSTEM is ${CMAKE_SYSTEM} ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_VERSION}") +message("CMAKE_SYSTEM is ${CMAKE_SYSTEM} ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR}") message("CMAKE_SYSTEM file is ${CMAKE_SYSTEM_INFO_FILE}") message("CMAKE_C_COMPILER is ${CMAKE_C_COMPILER}") message("CMAKE_CXX_COMPILER is ${CMAKE_CXX_COMPILER}") |