From 525ac4716e28d69f2e4f04003f0569631c0231b4 Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sat, 28 Jul 2018 15:59:41 -0500 Subject: [PATCH] Fix name of macOS --- CMakeLists.txt | 4 ++-- ReleaseNotes.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1bc66ac..42404b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,9 +117,9 @@ endif(USE_VC) # set compiler options ========================================================= if(DIAG) - # Library for time measurement: OSx and Linux + # Library for time measurement: macOS and Linux set (LIBTIMING "rt") - # do not set it if on OSx + # do not set it if on macOS if (APPLE AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0) set (LIBTIMINGAPPLE "-framework Carbon") endif () diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 21b343d..2a18ceb 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -62,7 +62,7 @@ o Fixed the installation of atan2.h V0.2.2 o Removed typos in the documentation (thanks to A. Neumann for spotting this!) -o Fixed CMake to make the install working also on OSx +o Fixed CMake to make the install working also on macOS V0.2.1 o Shared library built by default instead of static one.