From cb7cefcc8717d27e0471ab2fcf693218dccc97b8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 13 Jun 2022 13:19:15 +0200 Subject: [PATCH] Update the required wx versions in the sample CMakefile Also add this file to the list of files to update. --- docs/contributing/about-version-numbers.md | 1 + samples/minimal/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/contributing/about-version-numbers.md b/docs/contributing/about-version-numbers.md index 8b9477b346..8a1f4d675b 100644 --- a/docs/contributing/about-version-numbers.md +++ b/docs/contributing/about-version-numbers.md @@ -25,6 +25,7 @@ Here is the list of files that need to be updated: include/wx/version.h include/wx/osx/config_xcode.h samples/minimal/Info_cocoa.plist + samples/minimal/CMakeListst.txt [major/minor only] Do not forget to rebake everything after updating version.bkl! diff --git a/samples/minimal/CMakeLists.txt b/samples/minimal/CMakeLists.txt index 6731fd7147..9bd86eae1b 100644 --- a/samples/minimal/CMakeLists.txt +++ b/samples/minimal/CMakeLists.txt @@ -30,7 +30,7 @@ endif() project(minimal) # Request the required wxWidgets libs -find_package(wxWidgets 3.1 COMPONENTS core base REQUIRED CONFIG) +find_package(wxWidgets 3.2 COMPONENTS core base REQUIRED CONFIG) # Include the wxWidgets use file to initialize various settings if(wxWidgets_USE_FILE)