Skip to content

Commit

Permalink
Merge pull request #5038 from vladfi1/separate-nogui
Browse files Browse the repository at this point in the history
Separate nogui
  • Loading branch information
degasus committed Mar 10, 2017
2 parents ef74c5e + 68adcbd commit ae0f9c2
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 20 deletions.
1 change: 1 addition & 0 deletions Source/Core/CMakeLists.txt
Expand Up @@ -3,6 +3,7 @@ add_subdirectory(Common)
add_subdirectory(Core)
add_subdirectory(DiscIO)
add_subdirectory(DolphinWX)
add_subdirectory(DolphinNoGUI)
add_subdirectory(InputCommon)
add_subdirectory(UICommon)
add_subdirectory(VideoCommon)
Expand Down
19 changes: 19 additions & 0 deletions Source/Core/DolphinNoGUI/CMakeLists.txt
@@ -0,0 +1,19 @@
if(NOT(USE_X11 OR ENABLE_HEADLESS))
return()
endif()

set(NOGUI_SRCS MainNoGUI.cpp)

add_executable(dolphin-nogui ${NOGUI_SRCS})
set_target_properties(dolphin-nogui PROPERTIES OUTPUT_NAME dolphin-emu-nogui)

target_link_libraries(dolphin-nogui PRIVATE
core
uicommon
cpp-optparse
${LIBS}
)

set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-nogui)
install(TARGETS dolphin-nogui RUNTIME DESTINATION ${bindir})

Expand Up @@ -168,7 +168,7 @@ void Host_YieldToUI()

#if HAVE_X11
#include <X11/keysym.h>
#include "DolphinWX/X11Utils.h"
#include "UICommon/X11Utils.h"

class PlatformX11 : public Platform
{
Expand Down
15 changes: 0 additions & 15 deletions Source/Core/DolphinWX/CMakeLists.txt
Expand Up @@ -79,13 +79,6 @@ set(GUI_SRCS
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})

if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
Expand Down Expand Up @@ -200,11 +193,3 @@ if(wxWidgets_FOUND)

set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} ${DOLPHIN_EXE})
endif()

if(USE_X11 OR ENABLE_HEADLESS)
set(DOLPHIN_NOGUI_EXE ${DOLPHIN_EXE_BASE}-nogui)
add_executable(${DOLPHIN_NOGUI_EXE} ${SRCS} ${NOGUI_SRCS})
target_link_libraries(${DOLPHIN_NOGUI_EXE} ${LIBS})
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} ${DOLPHIN_NOGUI_EXE})
install(TARGETS ${DOLPHIN_NOGUI_EXE} RUNTIME DESTINATION ${bindir})
endif()
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Config/InterfaceConfigPane.cpp
Expand Up @@ -30,7 +30,7 @@
#include "DolphinWX/WxUtils.h"

#if defined(HAVE_XRANDR) && HAVE_XRANDR
#include "DolphinWX/X11Utils.h"
#include "UICommon/X11Utils.h"
#endif

static const std::array<std::string, 29> language_ids{{
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/ControllerConfigDiag.cpp
Expand Up @@ -41,7 +41,7 @@
#include "InputCommon/GCAdapter.h"

#if defined(HAVE_XRANDR) && HAVE_XRANDR
#include "DolphinWX/X11Utils.h"
#include "UICommon/X11Utils.h"
#endif

ControllerConfigDiag::ControllerConfigDiag(wxWindow* const parent)
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Frame.h
Expand Up @@ -21,7 +21,7 @@
#include "InputCommon/GCPadStatus.h"

#if defined(HAVE_X11) && HAVE_X11
#include "DolphinWX/X11Utils.h"
#include "UICommon/X11Utils.h"
#endif

// Class declarations
Expand Down
4 changes: 4 additions & 0 deletions Source/Core/UICommon/CMakeLists.txt
Expand Up @@ -5,6 +5,10 @@ set(SRCS
USBUtils.cpp
)

if(USE_X11)
set(SRCS ${SRCS} X11Utils.cpp)
endif()

set(LIBS common cpp-optparse)
if(LIBUSB_FOUND)
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
Expand Down
Expand Up @@ -2,7 +2,7 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.

#include "DolphinWX/X11Utils.h"
#include "UICommon/X11Utils.h"

#include <algorithm>
#include <cstdio>
Expand Down
File renamed without changes.

0 comments on commit ae0f9c2

Please sign in to comment.