From e34f7f112d22ca014c8e8da64ea034b9d1f8ce8b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 14 Jul 2014 19:04:38 -0400 Subject: [PATCH] CMakeLists: Increment the minimum required version of wxWidgets --- CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 956468e4c0..3a908f4ed0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -681,10 +681,8 @@ if(NOT DISABLE_WX AND NOT ANDROID) ERROR_QUIET ) message("Found wxWidgets version ${wxWidgets_VERSION}") - if(UNIX AND NOT APPLE) - set(wxMIN_VERSION "2.9.3") - else() - set(wxMIN_VERSION "2.9.4") + if(UNIX) + set(wxMIN_VERSION "3.0.0") endif() if(${wxWidgets_VERSION} VERSION_LESS ${wxMIN_VERSION}) message("At least ${wxMIN_VERSION} is required; ignoring found version")