From 61e0a3e7e7399861d83d5128517f60d23a3cb53d Mon Sep 17 00:00:00 2001 From: ktyl Date: Thu, 27 Jul 2023 23:30:56 +0100 Subject: [PATCH] fix: misleading cmake platform error message --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 379198f..8cb419d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ elseif(UNIX) find_package(GLEW REQUIRED) find_package(OpenGL REQUIRED) elseif(APPLE) - message(FATAL_ERROR "Linux and macOS platforms are not supported yet.") + message(FATAL_ERROR "macOS is not supported yet.") endif() add_executable(${PROJECT_NAME} hello.cpp)