CMake: Disable building the wxWidgets port by default since it is not supported yet.

This commit is contained in:
bgk 2011-12-28 11:56:07 +00:00
parent 9ca7db29f5
commit 7a17e5f320
1 changed files with 2 additions and 2 deletions

View File

@ -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}
)