diff options
author | Thalia Nero <chrisvn00@gmail.com> | 2020-05-28 17:59:54 -0400 |
---|---|---|
committer | Thalia Nero <chrisvn00@gmail.com> | 2020-05-28 17:59:54 -0400 |
commit | 0047ca454f9acc2e15a723454b1eac8a18b81904 (patch) | |
tree | 59886e6b49a8d38afcaebfd555987371fee4ba10 /CMakeLists.txt | |
parent | 07a1052c69a7c7d7feedd878e3371d80c6143981 (diff) | |
download | PrismLauncher-0047ca454f9acc2e15a723454b1eac8a18b81904.tar.gz PrismLauncher-0047ca454f9acc2e15a723454b1eac8a18b81904.tar.bz2 PrismLauncher-0047ca454f9acc2e15a723454b1eac8a18b81904.zip |
Clarify WSL error messages
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 11b6b63f..fdc61c06 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux") if(CMAKE_HOST_SYSTEM_VERSION MATCHES ".*[Mm]icrosoft.*" OR CMAKE_HOST_SYSTEM_VERSION MATCHES ".*WSL.*" ) - message(FATAL_ERROR "This is not a supported environment for any purpose and should never be used.") + message(FATAL_ERROR "Building MultiMC is not supported in Linux-on-Windows distributions.") endif() endif() |