Skip to content

Commit

Permalink
Merge pull request #6001 from spycrab/cmake_wx
Browse files Browse the repository at this point in the history
CMake: Move DISABLE_WX to ENABLE_WX
  • Loading branch information
delroth committed Sep 2, 2017
2 parents 3ae82ea + fc4de1b commit 3f33b95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ option(USE_EGL "Enables EGL OpenGL Interface" OFF)
option(TRY_X11 "Enables X11 Support" ON)
option(USE_SHARED_ENET "Use shared libenet if found rather than Dolphin's soon-to-compatibly-diverge version" OFF)
option(USE_UPNP "Enables UPnP port mapping support" ON)
option(DISABLE_WX "Disable wxWidgets (use Qt or CLI interface)" OFF)
option(ENABLE_WX "Enable wxWidgets (Default)" ON)
option(ENABLE_QT2 "Enable Qt2 (use the other experimental Qt interface)" OFF)
option(ENABLE_LTO "Enables Link Time Optimization" OFF)
option(ENABLE_GENERIC "Enables generic build that should run on any little-endian host" OFF)
Expand Down Expand Up @@ -387,7 +387,7 @@ if(ANDROID)
set(USE_X11 0)
set(USE_UPNP 0)
set(USE_EGL 1)
set(DISABLE_WX 1)
set(ENABLE_WX 0)
set(ENABLE_QT2 0)

# We are cross compiling, search only the toolchain for libraries and includes
Expand All @@ -411,7 +411,7 @@ if(ENABLE_HEADLESS)
set(USE_EGL 1)
endif()
set(USE_X11 0)
set(DISABLE_WX 1)
set(ENABLE_WX 0)
set(ENABLE_QT2 0)
add_definitions(-DUSE_HEADLESS)
endif()
Expand Down Expand Up @@ -730,7 +730,7 @@ if(NOT ANDROID)
endif()
endif()

if(NOT DISABLE_WX)
if(ENABLE_WX)
find_package(wxWidgets 3.1.0 COMPONENTS core aui adv)

if(_ARCH_32)
Expand Down

0 comments on commit 3f33b95

Please sign in to comment.