2014-08-06 19:32:41 +00:00
|
|
|
set(GUI_SRCS
|
|
|
|
ARCodeAddEdit.cpp
|
|
|
|
AboutDolphin.cpp
|
|
|
|
ConfigMain.cpp
|
2014-11-22 21:39:48 +00:00
|
|
|
ControllerConfigDiag.cpp
|
2014-10-18 21:32:50 +00:00
|
|
|
Cheats/CheatSearchTab.cpp
|
|
|
|
Cheats/CheatsWindow.cpp
|
|
|
|
Cheats/CreateCodeDialog.cpp
|
|
|
|
Cheats/GeckoCodeDiag.cpp
|
2014-08-06 19:32:41 +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
|
2014-10-19 10:45:40 +00:00
|
|
|
Debugger/WatchView.cpp
|
|
|
|
Debugger/WatchWindow.cpp
|
2014-08-06 19:32:41 +00:00
|
|
|
FifoPlayerDlg.cpp
|
|
|
|
Frame.cpp
|
|
|
|
FrameAui.cpp
|
|
|
|
FrameTools.cpp
|
|
|
|
GameListCtrl.cpp
|
|
|
|
HotkeyDlg.cpp
|
|
|
|
ISOFile.cpp
|
|
|
|
ISOProperties.cpp
|
|
|
|
InputConfigDiag.cpp
|
|
|
|
InputConfigDiagBitmaps.cpp
|
|
|
|
LogConfigWindow.cpp
|
|
|
|
LogWindow.cpp
|
|
|
|
Main.cpp
|
|
|
|
MemcardManager.cpp
|
|
|
|
NetWindow.cpp
|
|
|
|
PatchAddEdit.cpp
|
2014-07-29 17:14:25 +00:00
|
|
|
PostProcessingConfigDiag.cpp
|
2014-08-06 19:32:41 +00:00
|
|
|
SoftwareVideoConfigDialog.cpp
|
|
|
|
TASInputDlg.cpp
|
|
|
|
VideoConfigDiag.cpp
|
|
|
|
WXInputBase.cpp
|
|
|
|
WxUtils.cpp)
|
2010-11-01 15:47:02 +00:00
|
|
|
|
2014-11-25 01:26:33 +00:00
|
|
|
set(NOGUI_SRCS MainNoGUI.cpp)
|
|
|
|
|
|
|
|
if(USE_X11)
|
|
|
|
set(GUI_SRCS ${GUI_SRCS} X11Utils.cpp)
|
|
|
|
set(NOGUI_SRCS ${NOGUI_SRCS} X11Utils.cpp)
|
|
|
|
endif()
|
|
|
|
|
2014-08-06 19:32:41 +00:00
|
|
|
set(WXLIBS ${wxWidgets_LIBRARIES} dl)
|
|
|
|
|
2014-11-20 00:55:52 +00:00
|
|
|
list(APPEND LIBS core uicommon)
|
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
list(APPEND LIBS png)
|
|
|
|
endif()
|
|
|
|
|
2014-08-06 19:32:41 +00:00
|
|
|
set(ANDROID_SRCS Android/ButtonManager.cpp
|
|
|
|
MainAndroid.cpp)
|
2012-12-17 20:54:20 +00:00
|
|
|
|
2015-01-03 12:17:57 +00:00
|
|
|
if(APPLE)
|
2011-12-07 07:26:44 +00:00
|
|
|
if(wxWidgets_FOUND)
|
2014-11-20 00:55:52 +00:00
|
|
|
list(APPEND WXLIBS
|
2011-12-07 07:26:44 +00:00
|
|
|
${APPSERV_LIBRARY}
|
|
|
|
${COCOA_LIBRARY}
|
|
|
|
)
|
|
|
|
endif()
|
2011-12-11 15:07:59 +00:00
|
|
|
# Add resource files to application bundle.
|
|
|
|
set(RESOURCES resources/Dolphin.icns)
|
|
|
|
list(APPEND SRCS ${RESOURCES})
|
|
|
|
set_source_files_properties(${RESOURCES} PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION Resources)
|
2010-11-01 15:47:02 +00:00
|
|
|
endif()
|
|
|
|
|
2015-01-03 12:17:57 +00:00
|
|
|
if(APPLE)
|
2011-12-11 15:07:59 +00:00
|
|
|
set(DOLPHIN_EXE_BASE Dolphin)
|
|
|
|
else()
|
|
|
|
set(DOLPHIN_EXE_BASE dolphin-emu)
|
|
|
|
endif()
|
2014-08-06 19:32:41 +00:00
|
|
|
|
|
|
|
set(DOLPHIN_EXE ${DOLPHIN_EXE_BASE})
|
2011-02-13 06:06:32 +00:00
|
|
|
|
2013-08-30 05:35:43 +00:00
|
|
|
include(FindGettext)
|
2013-09-12 16:10:16 +00:00
|
|
|
if(GETTEXT_MSGMERGE_EXECUTABLE AND GETTEXT_MSGFMT_EXECUTABLE AND wxWidgets_FOUND)
|
2013-08-30 05:35:43 +00:00
|
|
|
file(GLOB LINGUAS ${CMAKE_SOURCE_DIR}/Languages/po/*.po)
|
|
|
|
add_custom_target(translations ALL)
|
|
|
|
GETTEXT_CREATE_TRANSLATIONS(${CMAKE_SOURCE_DIR}/Languages/po/dolphin-emu.pot ${LINGUAS})
|
|
|
|
endif()
|
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
if(ANDROID)
|
2013-07-27 20:09:18 +00:00
|
|
|
set(DOLPHIN_EXE main)
|
2014-08-06 19:32:41 +00:00
|
|
|
add_library(${DOLPHIN_EXE} SHARED ${SRCS} ${ANDROID_SRCS})
|
2014-11-01 14:33:02 +00:00
|
|
|
target_link_libraries(${DOLPHIN_EXE}
|
2013-02-26 19:49:00 +00:00
|
|
|
log
|
|
|
|
android
|
2013-11-24 22:43:53 +00:00
|
|
|
"-Wl,--no-warn-mismatch"
|
2013-02-26 19:49:00 +00:00
|
|
|
"-Wl,--whole-archive"
|
|
|
|
${LIBS}
|
|
|
|
"-Wl,--no-whole-archive"
|
|
|
|
)
|
2013-05-18 08:56:45 +00:00
|
|
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
2014-11-30 07:05:37 +00:00
|
|
|
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/libs/${ANDROID_NDK_ABI_NAME}
|
2013-06-22 12:45:05 +00:00
|
|
|
)
|
|
|
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
2014-11-30 07:05:37 +00:00
|
|
|
COMMAND cp ARGS ${LIBRARY_OUTPUT_PATH_ROOT}/libs/${ANDROID_NDK_ABI_NAME}/lib${DOLPHIN_EXE}.so ${CMAKE_SOURCE_DIR}/Source/Android/libs/${ANDROID_NDK_ABI_NAME}/
|
2013-05-18 08:56:45 +00:00
|
|
|
)
|
2013-07-06 00:18:33 +00:00
|
|
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
|
|
|
COMMAND cp ARGS ${CMAKE_SOURCE_DIR}/Data/Sys/GC/* ${CMAKE_SOURCE_DIR}/Source/Android/assets/
|
|
|
|
)
|
2014-05-05 18:44:08 +00:00
|
|
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
|
|
|
COMMAND cp ARGS -r ${CMAKE_SOURCE_DIR}/Data/Sys/Shaders ${CMAKE_SOURCE_DIR}/Source/Android/assets/
|
|
|
|
)
|
2014-08-06 19:32:41 +00:00
|
|
|
|
|
|
|
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} ${DOLPHIN_EXE})
|
|
|
|
elseif(wxWidgets_FOUND)
|
|
|
|
add_executable(${DOLPHIN_EXE} ${SRCS} ${GUI_SRCS})
|
2014-11-20 00:55:52 +00:00
|
|
|
target_link_libraries(${DOLPHIN_EXE} ${LIBS} ${WXLIBS})
|
2015-01-03 12:17:57 +00:00
|
|
|
if(APPLE)
|
2011-12-11 15:07:59 +00:00
|
|
|
include(BundleUtilities)
|
2013-02-26 19:49:00 +00:00
|
|
|
set(BUNDLE_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${DOLPHIN_EXE}.app)
|
2011-12-12 00:30:42 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
# Ask for an application bundle.
|
|
|
|
set_target_properties(${DOLPHIN_EXE} PROPERTIES
|
|
|
|
MACOSX_BUNDLE true
|
|
|
|
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in
|
2011-12-12 00:30:42 +00:00
|
|
|
)
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2013-09-23 04:22:00 +00:00
|
|
|
# get rid of any old copies
|
|
|
|
file (REMOVE_RECURSE ${BUNDLE_PATH}/Contents/Resources/Sys)
|
2013-08-30 05:35:43 +00:00
|
|
|
if(NOT SKIP_POSTPROCESS_BUNDLE)
|
|
|
|
# Fix up the bundle after it is finished.
|
|
|
|
# There does not seem to be an easy way to run CMake commands post-build,
|
|
|
|
# so we invoke CMake again on a generated script.
|
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/postprocess_bundle.cmake "
|
|
|
|
include(BundleUtilities)
|
|
|
|
message(\"Fixing up application bundle: ${BUNDLE_PATH}\")
|
|
|
|
message(\"(Note: This is only necessary to produce a redistributable binary.\")
|
|
|
|
message(\"To skip, pass -DSKIP_POSTPROCESS_BUNDLE=1 to cmake.)\")
|
|
|
|
set(BU_CHMOD_BUNDLE_ITEMS ON)
|
|
|
|
fixup_bundle(\"${BUNDLE_PATH}\" \"\" \"\")
|
2014-10-25 15:51:54 +00:00
|
|
|
file(INSTALL \"${CMAKE_SOURCE_DIR}/Data/Sys\"
|
|
|
|
DESTINATION \"${BUNDLE_PATH}/Contents/Resources\"
|
2013-09-23 04:22:00 +00:00
|
|
|
)
|
2013-08-30 05:35:43 +00:00
|
|
|
")
|
|
|
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P postprocess_bundle.cmake
|
|
|
|
)
|
2013-09-23 04:22:00 +00:00
|
|
|
else()
|
|
|
|
add_custom_command(OUTPUT ${BUNDLE_PATH}/Contents/Resources/Sys
|
2013-10-17 03:14:48 +00:00
|
|
|
COMMAND ln -nfs ${CMAKE_SOURCE_DIR}/Data/Sys ${BUNDLE_PATH}/Contents/Resources/Sys
|
2013-09-23 04:22:00 +00:00
|
|
|
VERBATIM
|
2011-12-17 15:26:52 +00:00
|
|
|
)
|
2014-11-19 19:51:25 +00:00
|
|
|
add_custom_target(CopyDataIntoBundleWx ALL
|
2013-09-23 04:22:00 +00:00
|
|
|
DEPENDS ${BUNDLE_PATH}/Contents/Resources/Sys
|
|
|
|
)
|
|
|
|
endif()
|
2013-08-30 05:35:43 +00:00
|
|
|
|
2013-09-12 16:10:16 +00:00
|
|
|
if(GETTEXT_MSGMERGE_EXECUTABLE AND GETTEXT_MSGFMT_EXECUTABLE AND wxWidgets_FOUND)
|
2013-08-30 05:35:43 +00:00
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/copy_translations_into_bundle.cmake "
|
2013-08-31 05:54:57 +00:00
|
|
|
file(GLOB TRANSLATION_FILES RELATIVE ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/*.gmo
|
2013-08-30 05:35:43 +00:00
|
|
|
)
|
|
|
|
foreach(TRANSLATION_FILE \${TRANSLATION_FILES})
|
|
|
|
string(REPLACE \".gmo\" \".lproj\" TRANSLATION_DIR
|
|
|
|
\${TRANSLATION_FILE}
|
|
|
|
)
|
|
|
|
# It would be better to copy to the new name as a single action,
|
|
|
|
# but I can't figure out a way to let CMake do that.
|
2013-08-31 05:54:57 +00:00
|
|
|
file(COPY ${CMAKE_CURRENT_BINARY_DIR}/\${TRANSLATION_FILE}
|
2013-08-30 05:35:43 +00:00
|
|
|
DESTINATION ${BUNDLE_PATH}/Contents/Resources/\${TRANSLATION_DIR}
|
|
|
|
NO_SOURCE_PERMISSIONS
|
|
|
|
)
|
|
|
|
file(RENAME
|
|
|
|
${BUNDLE_PATH}/Contents/Resources/\${TRANSLATION_DIR}/\${TRANSLATION_FILE}
|
|
|
|
${BUNDLE_PATH}/Contents/Resources/\${TRANSLATION_DIR}/dolphin-emu.mo
|
|
|
|
)
|
|
|
|
endforeach(TRANSLATION_FILE)
|
|
|
|
")
|
|
|
|
|
|
|
|
file(GLOB PO_FILES RELATIVE ${CMAKE_SOURCE_DIR}/Languages/po
|
|
|
|
${CMAKE_SOURCE_DIR}/Languages/po/*.po
|
|
|
|
)
|
|
|
|
string(REPLACE .po .gmo GMO_FILES "${PO_FILES}")
|
|
|
|
|
|
|
|
add_custom_command(OUTPUT ${BUNDLE_PATH}/Contents/Resources/en.lproj
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P copy_translations_into_bundle.cmake
|
|
|
|
DEPENDS ${GMO_FILES}
|
2013-09-12 15:26:04 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/Data/Sys
|
2013-08-30 05:35:43 +00:00
|
|
|
VERBATIM
|
|
|
|
)
|
2014-11-19 19:51:25 +00:00
|
|
|
add_custom_target(CopyTranslationsIntoBundleWx ALL
|
2013-08-30 05:35:43 +00:00
|
|
|
DEPENDS ${BUNDLE_PATH}/Contents/Resources/en.lproj
|
|
|
|
)
|
|
|
|
endif()
|
2011-12-14 01:50:36 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
# Install bundle into systemwide /Applications directory.
|
|
|
|
install(DIRECTORY ${BUNDLE_PATH} DESTINATION /Applications
|
|
|
|
USE_SOURCE_PERMISSIONS
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
install(TARGETS ${DOLPHIN_EXE} RUNTIME DESTINATION ${bindir})
|
|
|
|
endif()
|
2014-08-06 19:32:41 +00:00
|
|
|
|
|
|
|
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} ${DOLPHIN_EXE})
|
2011-12-11 15:07:59 +00:00
|
|
|
endif()
|
2012-12-22 11:51:01 +00:00
|
|
|
|
2014-08-06 19:32:41 +00:00
|
|
|
if(USE_X11)
|
|
|
|
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})
|
2014-11-10 07:53:11 +00:00
|
|
|
install(TARGETS ${DOLPHIN_NOGUI_EXE} RUNTIME DESTINATION ${bindir})
|
2014-08-06 19:32:41 +00:00
|
|
|
endif()
|