mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
VideoOGL: Move X11 wxWidgets utilities to DolphinWX
This commit is contained in:
@ -48,6 +48,13 @@ set(GUI_SRCS
|
||||
WiimoteConfigDiag.cpp
|
||||
WxUtils.cpp)
|
||||
|
||||
set(NOGUI_SRCS MainNoGUI.cpp)
|
||||
|
||||
if(USE_X11)
|
||||
set(GUI_SRCS ${GUI_SRCS} X11Utils.cpp)
|
||||
set(NOGUI_SRCS ${NOGUI_SRCS} X11Utils.cpp)
|
||||
endif()
|
||||
|
||||
set(WXLIBS ${wxWidgets_LIBRARIES} dl)
|
||||
|
||||
list(APPEND LIBS core uicommon)
|
||||
@ -56,12 +63,9 @@ if(ANDROID)
|
||||
list(APPEND LIBS png)
|
||||
endif()
|
||||
|
||||
|
||||
set(ANDROID_SRCS Android/ButtonManager.cpp
|
||||
MainAndroid.cpp)
|
||||
|
||||
set(NOGUI_SRCS MainNoGUI.cpp)
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
if(wxWidgets_FOUND)
|
||||
list(APPEND WXLIBS
|
||||
|
Reference in New Issue
Block a user