mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Move debugger ui files into a subdirectory. Primarily to make it easy to keep debugger strings out of translations, but also because it is more organized.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7163 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -13,57 +13,54 @@ set(LIBS core
|
||||
${X11_LIBRARIES})
|
||||
|
||||
if(wxWidgets_FOUND)
|
||||
set(SRCS ${SRCS}
|
||||
set(SRCS Src/ARCodeAddEdit.cpp
|
||||
Src/AboutDolphin.cpp
|
||||
Src/ARCodeAddEdit.cpp
|
||||
Src/CheatsWindow.cpp
|
||||
Src/ConfigMain.cpp
|
||||
Src/Debugger/BreakpointDlg.cpp
|
||||
Src/Debugger/BreakpointView.cpp
|
||||
Src/Debugger/BreakpointWindow.cpp
|
||||
Src/Debugger/CodeView.cpp
|
||||
Src/Debugger/CodeWindow.cpp
|
||||
Src/Debugger/CodeWindowFunctions.cpp
|
||||
Src/Debugger/DSPDebugWindow.cpp
|
||||
Src/Debugger/DSPRegisterView.cpp
|
||||
Src/Debugger/DebuggerPanel.cpp
|
||||
Src/Debugger/DebuggerUIUtil.cpp
|
||||
Src/Debugger/JitWindow.cpp
|
||||
Src/Debugger/MemoryCheckDlg.cpp
|
||||
Src/Debugger/MemoryView.cpp
|
||||
Src/Debugger/MemoryWindow.cpp
|
||||
Src/Debugger/RegisterView.cpp
|
||||
Src/Debugger/RegisterWindow.cpp
|
||||
Src/Frame.cpp
|
||||
Src/FrameAui.cpp
|
||||
Src/FrameTools.cpp
|
||||
Src/GameListCtrl.cpp
|
||||
Src/GeckoCodeDiag.cpp
|
||||
Src/HotkeyDlg.cpp
|
||||
Src/InputConfigDiag.cpp
|
||||
Src/InputConfigDiagBitmaps.cpp
|
||||
Src/ISOFile.cpp
|
||||
Src/ISOProperties.cpp
|
||||
Src/InputConfigDiag.cpp
|
||||
Src/InputConfigDiagBitmaps.cpp
|
||||
Src/LogWindow.cpp
|
||||
Src/Main.cpp
|
||||
Src/MemcardManager.cpp
|
||||
Src/MemoryCards/GCMemcard.cpp
|
||||
Src/NetWindow.cpp
|
||||
Src/PatchAddEdit.cpp
|
||||
Src/PHackSettings.cpp
|
||||
Src/UDPConfigDiag.cpp
|
||||
Src/WiimoteConfigDiag.cpp
|
||||
Src/MemoryCards/WiiSaveCrypted.cpp
|
||||
Src/NetWindow.cpp
|
||||
Src/PHackSettings.cpp
|
||||
Src/PatchAddEdit.cpp
|
||||
Src/UDPConfigDiag.cpp
|
||||
Src/VideoConfigDiag.cpp
|
||||
Src/WXInputBase.cpp
|
||||
Src/WxUtils.cpp
|
||||
Src/BreakpointDlg.cpp
|
||||
Src/BreakpointView.cpp
|
||||
Src/BreakpointWindow.cpp
|
||||
Src/CodeView.cpp
|
||||
Src/CodeWindow.cpp
|
||||
Src/CodeWindowFunctions.cpp
|
||||
Src/DebuggerPanel.cpp
|
||||
Src/DebuggerUIUtil.cpp
|
||||
Src/DSPDebugWindow.cpp
|
||||
Src/DSPRegisterView.cpp
|
||||
Src/JitWindow.cpp
|
||||
Src/MemoryCheckDlg.cpp
|
||||
Src/MemoryView.cpp
|
||||
Src/MemoryWindow.cpp
|
||||
Src/RegisterView.cpp
|
||||
Src/RegisterWindow.cpp
|
||||
Src/VideoConfigDiag.cpp)
|
||||
Src/WiimoteConfigDiag.cpp
|
||||
Src/WxUtils.cpp)
|
||||
|
||||
set(WXLIBS ${wxWidgets_LIBRARIES}
|
||||
${GTK2_LIBRARIES})
|
||||
|
||||
else(wxWidgets_FOUND)
|
||||
set(SRCS ${SRCS}
|
||||
Src/MainNoGUI.cpp)
|
||||
else()
|
||||
set(SRCS Src/MainNoGUI.cpp)
|
||||
endif()
|
||||
|
||||
if(WIN32)
|
||||
@ -81,15 +78,13 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR
|
||||
set(LIBS ${LIBS} usbhid)
|
||||
endif()
|
||||
|
||||
set(EXEGUI dolphin-emu)
|
||||
set(EXENOGUI dolphin-emu-nogui)
|
||||
|
||||
if(wxWidgets_FOUND)
|
||||
add_executable(${EXEGUI} ${SRCS})
|
||||
target_link_libraries(${EXEGUI} ${LIBS} ${WXLIBS})
|
||||
install(TARGETS ${EXEGUI} RUNTIME DESTINATION ${bindir})
|
||||
set(DOLPHIN_EXE dolphin-emu)
|
||||
else()
|
||||
add_executable(${EXENOGUI} ${SRCS})
|
||||
target_link_libraries(${EXENOGUI} ${LIBS})
|
||||
install(TARGETS ${EXENOGUI} RUNTIME DESTINATION ${bindir})
|
||||
set(DOLPHIN_EXE dolphin-emu-nogui)
|
||||
endif()
|
||||
|
||||
add_executable(${DOLPHIN_EXE} ${SRCS})
|
||||
target_link_libraries(${DOLPHIN_EXE} ${LIBS} ${WXLIBS})
|
||||
install(TARGETS ${DOLPHIN_EXE} RUNTIME DESTINATION ${bindir})
|
||||
|
||||
|
Reference in New Issue
Block a user