Moved X11Utils into UICommon.
This commit is contained in:
parent
7cc5604a2c
commit
6a89cf0201
|
@ -81,11 +81,6 @@ set(GUI_SRCS
|
||||||
|
|
||||||
set(NOGUI_SRCS MainNoGUI.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})
|
set(WXLIBS ${wxWidgets_LIBRARIES})
|
||||||
|
|
||||||
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include "DolphinWX/WxUtils.h"
|
#include "DolphinWX/WxUtils.h"
|
||||||
|
|
||||||
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
||||||
#include "DolphinWX/X11Utils.h"
|
#include "UICommon/X11Utils.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const std::array<std::string, 29> language_ids{{
|
static const std::array<std::string, 29> language_ids{{
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
#include "InputCommon/GCAdapter.h"
|
#include "InputCommon/GCAdapter.h"
|
||||||
|
|
||||||
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
||||||
#include "DolphinWX/X11Utils.h"
|
#include "UICommon/X11Utils.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ControllerConfigDiag::ControllerConfigDiag(wxWindow* const parent)
|
ControllerConfigDiag::ControllerConfigDiag(wxWindow* const parent)
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include "InputCommon/GCPadStatus.h"
|
#include "InputCommon/GCPadStatus.h"
|
||||||
|
|
||||||
#if defined(HAVE_X11) && HAVE_X11
|
#if defined(HAVE_X11) && HAVE_X11
|
||||||
#include "DolphinWX/X11Utils.h"
|
#include "UICommon/X11Utils.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Class declarations
|
// Class declarations
|
||||||
|
|
|
@ -168,7 +168,7 @@ void Host_YieldToUI()
|
||||||
|
|
||||||
#if HAVE_X11
|
#if HAVE_X11
|
||||||
#include <X11/keysym.h>
|
#include <X11/keysym.h>
|
||||||
#include "DolphinWX/X11Utils.h"
|
#include "UICommon/X11Utils.h"
|
||||||
|
|
||||||
class PlatformX11 : public Platform
|
class PlatformX11 : public Platform
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,6 +5,10 @@ set(SRCS
|
||||||
USBUtils.cpp
|
USBUtils.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(USE_X11)
|
||||||
|
set(SRCS ${SRCS} X11Utils.cpp)
|
||||||
|
endif()
|
||||||
|
|
||||||
set(LIBS common cpp-optparse)
|
set(LIBS common cpp-optparse)
|
||||||
if(LIBUSB_FOUND)
|
if(LIBUSB_FOUND)
|
||||||
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// Licensed under GPLv2+
|
// Licensed under GPLv2+
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
#include "DolphinWX/X11Utils.h"
|
#include "UICommon/X11Utils.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
Loading…
Reference in New Issue