From 70f4f6fad59fe31f6f728e50a4dc930ccbb2d0ca Mon Sep 17 00:00:00 2001 From: Clownacy Date: Thu, 30 Jan 2020 01:21:04 +0000 Subject: [PATCH] Capitalise a few things in bin2h differently --- bin2h/CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin2h/CMakeLists.txt b/bin2h/CMakeLists.txt index aedb376e..06cc8a58 100644 --- a/bin2h/CMakeLists.txt +++ b/bin2h/CMakeLists.txt @@ -7,9 +7,9 @@ endif() option(LTO "Enable link-time optimisation" OFF) option(NATIVE_OPTIMIZATIONS "Enable processor-specific optimisations (executable might not work on other architectures) (GCC-compatible compilers 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(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) project(bin2h LANGUAGES C) @@ -27,13 +27,13 @@ message(STATUS "Compiler ID : ${CMAKE_C_COMPILER_ID}") if (CMAKE_C_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_C_COMPILER_ID STREQUAL "GNU") # Using GCC set(COMPILER_IS_GCC true) - message(STATUS "Compiling with gcc") + message(STATUS "Compiling with GCC") endif() if (CMAKE_C_COMPILER_ID STREQUAL "Intel")