2017-04-24 21:55:29 +00:00
|
|
|
if(NOT wxWidgets_FOUND)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2018-01-26 08:26:45 +00:00
|
|
|
add_executable(dolphin-emu-wx
|
2017-03-01 12:43:43 +00:00
|
|
|
AboutDolphin.cpp
|
|
|
|
ControllerConfigDiag.cpp
|
|
|
|
Cheats/ActionReplayCodesPanel.cpp
|
|
|
|
Cheats/ARCodeAddEdit.cpp
|
|
|
|
Cheats/CheatSearchTab.cpp
|
|
|
|
Cheats/CheatsWindow.cpp
|
|
|
|
Cheats/CreateCodeDialog.cpp
|
|
|
|
Cheats/GeckoCodeDiag.cpp
|
|
|
|
Config/AddUSBDeviceDiag.cpp
|
|
|
|
Config/AdvancedConfigPane.cpp
|
|
|
|
Config/AudioConfigPane.cpp
|
|
|
|
Config/ConfigMain.cpp
|
|
|
|
Config/GameCubeConfigPane.cpp
|
|
|
|
Config/GCAdapterConfigDiag.cpp
|
|
|
|
Config/GeneralConfigPane.cpp
|
|
|
|
Config/InterfaceConfigPane.cpp
|
|
|
|
Config/PathConfigPane.cpp
|
|
|
|
Config/WiiConfigPane.cpp
|
2017-05-03 23:08:24 +00:00
|
|
|
Debugger/AssemblerEntryDialog.cpp
|
2017-03-01 12:43:43 +00:00
|
|
|
Debugger/BreakpointDlg.cpp
|
|
|
|
Debugger/BreakpointView.cpp
|
|
|
|
Debugger/BreakpointWindow.cpp
|
|
|
|
Debugger/CodeView.cpp
|
|
|
|
Debugger/CodeWindow.cpp
|
|
|
|
Debugger/CodeWindowFunctions.cpp
|
|
|
|
Debugger/DSPDebugWindow.cpp
|
|
|
|
Debugger/DSPRegisterView.cpp
|
|
|
|
Debugger/DebuggerPanel.cpp
|
|
|
|
Debugger/DebuggerUIUtil.cpp
|
|
|
|
Debugger/JitWindow.cpp
|
|
|
|
Debugger/MemoryCheckDlg.cpp
|
|
|
|
Debugger/MemoryView.cpp
|
|
|
|
Debugger/MemoryWindow.cpp
|
|
|
|
Debugger/RegisterView.cpp
|
|
|
|
Debugger/RegisterWindow.cpp
|
|
|
|
Debugger/WatchView.cpp
|
|
|
|
Debugger/WatchWindow.cpp
|
|
|
|
ISOProperties/FilesystemPanel.cpp
|
|
|
|
ISOProperties/InfoPanel.cpp
|
|
|
|
ISOProperties/ISOProperties.cpp
|
|
|
|
NetPlay/ChangeGameDialog.cpp
|
|
|
|
NetPlay/MD5Dialog.cpp
|
|
|
|
NetPlay/NetPlayLauncher.cpp
|
|
|
|
NetPlay/NetPlaySetupFrame.cpp
|
|
|
|
NetPlay/NetWindow.cpp
|
|
|
|
NetPlay/PadMapDialog.cpp
|
|
|
|
Input/InputConfigDiag.cpp
|
|
|
|
Input/InputConfigDiagBitmaps.cpp
|
|
|
|
Input/HotkeyInputConfigDiag.cpp
|
|
|
|
Input/GCPadInputConfigDiag.cpp
|
|
|
|
Input/MicButtonConfigDiag.cpp
|
|
|
|
Input/GCKeyboardInputConfigDiag.cpp
|
|
|
|
Input/WiimoteInputConfigDiag.cpp
|
|
|
|
Input/NunchukInputConfigDiag.cpp
|
|
|
|
Input/ClassicInputConfigDiag.cpp
|
|
|
|
Input/GuitarInputConfigDiag.cpp
|
|
|
|
Input/DrumsInputConfigDiag.cpp
|
|
|
|
Input/TurntableInputConfigDiag.cpp
|
|
|
|
DolphinSlider.cpp
|
|
|
|
FifoPlayerDlg.cpp
|
|
|
|
Frame.cpp
|
|
|
|
FrameAui.cpp
|
|
|
|
FrameTools.cpp
|
|
|
|
GameListCtrl.cpp
|
|
|
|
LogConfigWindow.cpp
|
|
|
|
LogWindow.cpp
|
|
|
|
Main.cpp
|
|
|
|
MainMenuBar.cpp
|
|
|
|
MainToolBar.cpp
|
|
|
|
MemcardManager.cpp
|
|
|
|
PatchAddEdit.cpp
|
|
|
|
PostProcessingConfigDiag.cpp
|
|
|
|
SoftwareVideoConfigDialog.cpp
|
|
|
|
TASInputDlg.cpp
|
2017-07-12 07:11:29 +00:00
|
|
|
UINeedsControllerState.cpp
|
2017-03-01 12:43:43 +00:00
|
|
|
VideoConfigDiag.cpp
|
|
|
|
WxEventUtils.cpp
|
|
|
|
WxUtils.cpp
|
|
|
|
)
|
2010-11-01 15:47:02 +00:00
|
|
|
|
2018-01-26 08:26:45 +00:00
|
|
|
target_link_libraries(dolphin-emu-wx
|
2018-04-02 16:21:59 +00:00
|
|
|
PRIVATE
|
2018-04-07 23:53:19 +00:00
|
|
|
bdisasm
|
2017-04-24 21:55:29 +00:00
|
|
|
core
|
|
|
|
uicommon
|
|
|
|
cpp-optparse
|
|
|
|
wxWidgets::wxWidgets
|
|
|
|
)
|
|
|
|
|
2015-01-03 12:17:57 +00:00
|
|
|
if(APPLE)
|
2017-03-01 12:43:43 +00:00
|
|
|
# Add resource files to application bundle.
|
2018-02-24 20:12:22 +00:00
|
|
|
set(RESOURCES "${CMAKE_SOURCE_DIR}/Data/Dolphin.icns")
|
2018-01-26 08:26:45 +00:00
|
|
|
target_sources(dolphin-emu-wx PRIVATE ${RESOURCES})
|
2017-03-01 12:43:43 +00:00
|
|
|
set_source_files_properties(${RESOURCES} PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION Resources)
|
2010-11-01 15:47:02 +00:00
|
|
|
endif()
|
|
|
|
|
2017-02-03 03:51:37 +00:00
|
|
|
if(WIN32)
|
2018-01-26 08:26:45 +00:00
|
|
|
target_sources(dolphin-emu-wx PRIVATE
|
2017-03-01 12:43:43 +00:00
|
|
|
DolphinWX.manifest
|
|
|
|
DolphinWX.rc
|
|
|
|
)
|
2017-02-03 03:51:37 +00:00
|
|
|
endif()
|
|
|
|
|
2018-01-26 08:26:45 +00:00
|
|
|
target_link_libraries(dolphin-emu-wx PRIVATE ${LIBS})
|
|
|
|
|
2017-04-26 11:47:49 +00:00
|
|
|
if(USE_X11)
|
|
|
|
find_package(GTK2 REQUIRED)
|
2018-01-26 08:26:45 +00:00
|
|
|
target_link_libraries(dolphin-emu-wx PRIVATE ${GTK2_LIBRARIES})
|
|
|
|
target_include_directories(dolphin-emu-wx PRIVATE ${GTK2_INCLUDE_DIRS})
|
2017-04-26 11:47:49 +00:00
|
|
|
endif()
|
|
|
|
|
2017-04-24 21:55:29 +00:00
|
|
|
# Handle localization
|
|
|
|
find_package(Gettext)
|
|
|
|
if(GETTEXT_MSGMERGE_EXECUTABLE AND GETTEXT_MSGFMT_EXECUTABLE)
|
2017-04-24 21:57:11 +00:00
|
|
|
set(pot_file "${CMAKE_SOURCE_DIR}/Languages/po/dolphin-emu.pot")
|
|
|
|
file(GLOB LINGUAS ${CMAKE_SOURCE_DIR}/Languages/po/*.po)
|
|
|
|
|
2018-01-26 08:26:45 +00:00
|
|
|
target_sources(dolphin-emu-wx PRIVATE ${pot_file} ${LINGUAS})
|
2017-04-24 21:57:11 +00:00
|
|
|
source_group("Localization" FILES ${LINGUAS})
|
|
|
|
source_group("Localization\\\\Generated" FILES ${pot_file})
|
|
|
|
|
|
|
|
foreach(po ${LINGUAS})
|
|
|
|
get_filename_component(lang ${po} NAME_WE)
|
|
|
|
set(mo_dir ${CMAKE_CURRENT_BINARY_DIR}/${lang})
|
2018-01-26 08:26:45 +00:00
|
|
|
set(mo ${mo_dir}/dolphin-emu-wx.mo)
|
2017-04-24 21:57:11 +00:00
|
|
|
|
2018-01-26 08:26:45 +00:00
|
|
|
target_sources(dolphin-emu-wx PRIVATE ${mo})
|
2017-04-24 21:57:11 +00:00
|
|
|
source_group("Localization\\\\Generated" FILES ${mo})
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
|
|
|
set_source_files_properties(${mo} PROPERTIES MACOSX_PACKAGE_LOCATION "Resources/${lang}.lproj")
|
|
|
|
else()
|
|
|
|
install(FILES ${mo} DESTINATION share/locale/${lang}/LC_MESSAGES)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_custom_command(OUTPUT ${mo}
|
2018-04-05 16:44:47 +00:00
|
|
|
COMMAND cmake -E make_directory ${mo_dir}
|
2017-04-24 21:57:11 +00:00
|
|
|
COMMAND ${GETTEXT_MSGMERGE_EXECUTABLE} --quiet --update --backup=none -s ${po} ${pot_file}
|
|
|
|
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o ${mo} ${po}
|
|
|
|
DEPENDS ${po}
|
|
|
|
)
|
|
|
|
endforeach()
|
2011-12-11 15:07:59 +00:00
|
|
|
endif()
|
2017-04-24 21:55:29 +00:00
|
|
|
|
|
|
|
if(APPLE)
|
2018-01-26 08:26:45 +00:00
|
|
|
include(BundleUtilities)
|
|
|
|
set(BUNDLE_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/DolphinWx.app)
|
|
|
|
|
2017-04-24 21:57:11 +00:00
|
|
|
# Ask for an application bundle.
|
2018-01-26 08:26:45 +00:00
|
|
|
set_target_properties(dolphin-emu-wx PROPERTIES
|
2017-04-24 21:57:11 +00:00
|
|
|
MACOSX_BUNDLE true
|
|
|
|
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in
|
2018-01-26 08:26:45 +00:00
|
|
|
OUTPUT_NAME DolphinWx
|
2017-04-24 21:57:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Copy resources in the bundle
|
|
|
|
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/Data/Sys")
|
|
|
|
file(GLOB_RECURSE resources RELATIVE "${CMAKE_SOURCE_DIR}/Data" "${CMAKE_SOURCE_DIR}/Data/Sys/*")
|
|
|
|
foreach(res ${resources})
|
2018-01-26 08:26:45 +00:00
|
|
|
target_sources(dolphin-emu-wx PRIVATE "${CMAKE_SOURCE_DIR}/Data/${res}")
|
2017-04-24 21:57:11 +00:00
|
|
|
get_filename_component(resdir "${res}" DIRECTORY)
|
|
|
|
set_source_files_properties("${CMAKE_SOURCE_DIR}/Data/${res}" PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION "Resources/${resdir}")
|
|
|
|
source_group("Resources" FILES "${CMAKE_SOURCE_DIR}/Data/${res}")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Update library references to make the bundle portable
|
|
|
|
include(DolphinPostprocessBundle)
|
2018-01-26 08:26:45 +00:00
|
|
|
dolphin_postprocess_bundle(dolphin-emu-wx)
|
2017-04-24 21:57:11 +00:00
|
|
|
|
|
|
|
# Install bundle into systemwide /Applications directory.
|
2018-01-26 08:26:45 +00:00
|
|
|
install(TARGETS dolphin-emu-wx DESTINATION /Applications)
|
2017-04-24 21:55:29 +00:00
|
|
|
elseif(WIN32)
|
2018-01-26 08:26:45 +00:00
|
|
|
set_target_properties(dolphin-emu-wx PROPERTIES
|
2017-04-24 21:57:11 +00:00
|
|
|
WIN32_EXECUTABLE ON
|
|
|
|
)
|
2018-01-26 08:26:45 +00:00
|
|
|
add_custom_command(TARGET dolphin-emu-wx
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/Data/Sys $<TARGET_FILE_DIR:dolphin-emu-wx>/Sys
|
2017-04-24 21:57:11 +00:00
|
|
|
)
|
2017-04-24 21:55:29 +00:00
|
|
|
else()
|
2018-01-26 08:26:45 +00:00
|
|
|
install(TARGETS dolphin-emu-wx RUNTIME DESTINATION ${bindir})
|
2017-04-24 21:55:29 +00:00
|
|
|
endif()
|
|
|
|
|
2018-01-26 08:26:45 +00:00
|
|
|
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-emu-wx)
|