From 518c04cd557a3dca458cbd2e794edf2c849f4879 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 15 Aug 2021 16:31:31 +0200 Subject: [PATCH] Add "Copyright" to CMake copyright variable This is used for NSHumanReadableCopyright Info.plist field and should have "Copyright" for consistency with the other Info.plist files. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d5147f1845..348864030b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,7 +86,7 @@ math(EXPR wxSOVERSION_MAJOR "${WX_CURRENT} - ${WX_AGE}") set(wxSOVERSION ${wxSOVERSION_MAJOR}.${WX_AGE}.${WX_REVISION}) set(wxVERSION ${wxMAJOR_VERSION}.${wxMINOR_VERSION}.${wxRELEASE_NUMBER}) -set(wxCOPYRIGHT "1992-2021 wxWidgets") +set(wxCOPYRIGHT "Copyright 1992-2021 wxWidgets") project(wxWidgets VERSION ${wxVERSION})