From: David H. <no...@so...> - 2014-01-10 13:38:04
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "codelite". The branch, master has been updated via 4dbb082c8829b8f6bb2a579e7b412bafadafd2ae (commit) from e97e1d93b209ee4e7b8d21396f07c51f38531994 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceforge.net/p/codelite/codelitegit/ci/4dbb082c8829b8f6bb2a579e7b412bafadafd2ae commit 4dbb082c8829b8f6bb2a579e7b412bafadafd2ae Author: dghart <da...@4P...> Date: Fri Jan 10 13:35:52 2014 +0000 Update CMakeLists.txt to check for >=wx3.0 rather than 2.9.5 diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cdd1cb..546aab6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -85,9 +85,9 @@ if (UNIX) string(SUBSTRING "${WX_VERSION}" "0" "1" wxMAJOR_VERSION) string(SUBSTRING "${WX_VERSION}" "2" "1" wxMINOR_VERSION) string(SUBSTRING "${WX_VERSION}" "4" "1" wxRELEASE_NUMBER) - if ( wxMAJOR_VERSION LESS 3 AND (wxMINOR_VERSION LESS 9 OR wxRELEASE_NUMBER LESS 5) ) + if ( wxMAJOR_VERSION LESS 3 ) message(FATAL_ERROR -"\nI'm afraid your wxWidgets version is too old.\nBuilding CodeLite requires at least wxWidgets-2.9.5" +"\nI'm afraid your wxWidgets version is too old.\nBuilding CodeLite requires at least wxWidgets-3.0.0" ) endif() endif() ----------------------------------------------------------------------- Summary of changes: CMakeLists.txt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- codelite |