diff options
author | Brad King <brad.king@kitware.com> | 2019-11-05 20:28:51 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2019-11-06 10:45:12 (GMT) |
commit | 4af39fe25b5f8de9cebec2f1b549f2212d3f033f (patch) | |
tree | 03489d42c2ea5cb80d5d56214d5168863bb4cd67 /Modules/CMakeSystemSpecificInformation.cmake | |
parent | d0be4d53655f1651fe7ff3c61a668ffc3fd4bbf9 (diff) | |
download | CMake-4af39fe25b5f8de9cebec2f1b549f2212d3f033f.zip CMake-4af39fe25b5f8de9cebec2f1b549f2212d3f033f.tar.gz CMake-4af39fe25b5f8de9cebec2f1b549f2212d3f033f.tar.bz2 |
CMakeSystemSpecificInformation: Replace mailing list with Discourse Forum
On unknown platforms we issue a message instructing users to post to
our mailing list to add support for the platform. Refer them to the
CMake Discourse Forum instead.
Diffstat (limited to 'Modules/CMakeSystemSpecificInformation.cmake')
-rw-r--r-- | Modules/CMakeSystemSpecificInformation.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/CMakeSystemSpecificInformation.cmake b/Modules/CMakeSystemSpecificInformation.cmake index c6a8814..ea3a445 100644 --- a/Modules/CMakeSystemSpecificInformation.cmake +++ b/Modules/CMakeSystemSpecificInformation.cmake @@ -27,13 +27,13 @@ include(${CMAKE_SYSTEM_INFO_FILE} OPTIONAL RESULT_VARIABLE _INCLUDED_SYSTEM_INFO if(NOT _INCLUDED_SYSTEM_INFO_FILE) message("System is unknown to cmake, create:\n${CMAKE_SYSTEM_INFO_FILE}" - " to use this system, please send your config file to " - "cmake@www.cmake.org so it can be added to cmake") + " to use this system, please post your config file on " + "discourse.cmake.org so it can be added to cmake") if(EXISTS ${CMAKE_BINARY_DIR}/CMakeCache.txt) configure_file(${CMAKE_BINARY_DIR}/CMakeCache.txt ${CMAKE_BINARY_DIR}/CopyOfCMakeCache.txt COPYONLY) message("Your CMakeCache.txt file was copied to CopyOfCMakeCache.txt. " - "Please send that file to cmake@www.cmake.org.") + "Please post that file on discourse.cmake.org.") endif() endif() |