Merge pull request #1459 from frantisekz/master

Degrade GTK3 Fatal Error to Warning
This commit is contained in:
Gregory Hainaut 2016-07-15 09:35:36 +02:00 committed by GitHub
commit f9ebc0ba70
1 changed files with 1 additions and 1 deletions

View File

@ -402,6 +402,6 @@ string(STRIP "${CMAKE_CXX_FLAGS} ${DEFAULT_CPP_FLAG}" CMAKE_CXX_FLAGS)
#-------------------------------------------------------------------------------
if(CMAKE_BUILD_TYPE MATCHES "Release" OR PACKAGE_MODE)
if (GTK3_API)
message(FATAL_ERROR "GTK3 is highly experimental besides it requires a wxWidget built with __WXGTK3__ support !!!")
message(WARNING "GTK3 is highly experimental besides it requires a wxWidget built with __WXGTK3__ support !!!")
endif()
endif()