shithub: cstory

Download patch

ref: 92e5647f1105c9d80eb3ac43ef02bae3cdcc2abb
parent: a74bfd4b6d215a7ea651fdebaec860f66a70e1b1
author: Clownacy <[email protected]>
date: Mon Jan 20 17:06:52 EST 2020

More CMake capitalisation

--- a/DoConfig/CMakeLists.txt
+++ b/DoConfig/CMakeLists.txt
@@ -8,9 +8,9 @@
 	cmake_policy(SET CMP0072 NEW)
 endif()
 
-option(WARNINGS "Enable common compiler warnings (for gcc-compatible compilers and MSVC only)" OFF)
-option(WARNINGS_ALL "Enable ALL compiler warnings (for clang and MSVC only)" OFF)
-option(WARNINGS_FATAL "Stop compilation on any compiler warning (for gcc-compatible compilers and MSVC only)" OFF)
+option(WARNINGS "Enable common compiler warnings (for GCC-compatible compilers and MSVC only)" OFF)
+option(WARNINGS_ALL "Enable ALL compiler warnings (for Clang and MSVC only)" OFF)
+option(WARNINGS_FATAL "Stop compilation on any compiler warning (for GCC-compatible compilers and MSVC only)" OFF)
 option(FORCE_LOCAL_LIBS "Compile the built-in version of FLTK instead of using the system-provided one" OFF)
 
 project(DoConfig LANGUAGES CXX)
@@ -21,13 +21,13 @@
 if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
 	# Using Clang (this is a match so that we also get "AppleClang" which is the Apple-provided Clang
 	set(COMPILER_IS_CLANG true)
-	message(STATUS "Compiling with clang")
+	message(STATUS "Compiling with Clang")
 endif()
 
 if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
 	# Using GCC
 	set(COMPILER_IS_GCC true)
-	message(STATUS "Compiling with gcc")
+	message(STATUS "Compiling with GCC")
 endif()
 
 if (CMAKE_CXX_COMPILER_ID STREQUAL "Intel")