fix: misleading cmake platform error message

This commit is contained in:
ktyl 2023-07-27 23:30:56 +01:00 committed by Cat Flynn
parent 34122f3416
commit 61e0a3e7e7
1 changed files with 1 additions and 1 deletions

View File

@ -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)