From 88de75eb7d7cbe77eb9abc5a38273e21dfaad47a 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. git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1061 a31d4220-a93d-0410-bf67-fe4944624d44 --- 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} )