From 7a17e5f32086edecee0aa800f4626d9697dd6cc0 Mon Sep 17 00:00:00 2001 From: bgk Date: Wed, 28 Dec 2011 11:56:07 +0000 Subject: [PATCH] CMake: Disable building the wxWidgets port by default since it is not supported yet. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7341a365..82f792f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,9 +8,9 @@ if( COMMAND cmake_policy ) endif( COMMAND cmake_policy ) SET( CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeScripts ) -option( ENABLE_WX "Build the wxWidgets port" ON ) option( ENABLE_SDL "Build the SDL port" ON ) option( ENABLE_GTK "Build the GTK+ GUI" ON ) +option( ENABLE_WX "Build the wxWidgets port" OFF ) option( ENABLE_DEBUGGER "Enable the debugger" ON ) option( ENABLE_NLS "Enable translations" ON ) option( ENABLE_ASM_CORE "Enable x86 ASM CPU cores" OFF ) @@ -429,7 +429,7 @@ IF( ENABLE_GTK ) TARGET_LINK_LIBRARIES ( gvbam - ${VBAMCORE_LIBS} + ${VBAMCORE_LIBS} ${GTKMM_LIBRARIES} ${GTKGLMM_LIBRARIES} )