Fix a linkage issue on newer linux distributions created in revision 6544.
Also update the menu link to dolphin-emulator.com git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6553 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
0447abef36
commit
24569aca3d
|
@ -319,7 +319,7 @@ endif()
|
||||||
option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF)
|
option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF)
|
||||||
if(NOT DISABLE_WX)
|
if(NOT DISABLE_WX)
|
||||||
include(FindwxWidgets OPTIONAL)
|
include(FindwxWidgets OPTIONAL)
|
||||||
FIND_PACKAGE(wxWidgets COMPONENTS aui)
|
FIND_PACKAGE(wxWidgets COMPONENTS core aui adv)
|
||||||
|
|
||||||
if(wxWidgets_FOUND)
|
if(wxWidgets_FOUND)
|
||||||
include(${wxWidgets_USE_FILE})
|
include(${wxWidgets_USE_FILE})
|
||||||
|
|
|
@ -1093,7 +1093,7 @@ void CFrame::OnHelp(wxCommandEvent& event)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case IDM_HELPWEBSITE:
|
case IDM_HELPWEBSITE:
|
||||||
WxUtils::Launch("http://www.dolphin-emu.com/");
|
WxUtils::Launch("http://www.dolphin-emulator.com/");
|
||||||
break;
|
break;
|
||||||
case IDM_HELPGOOGLECODE:
|
case IDM_HELPGOOGLECODE:
|
||||||
WxUtils::Launch("http://code.google.com/p/dolphin-emu/");
|
WxUtils::Launch("http://code.google.com/p/dolphin-emu/");
|
||||||
|
|
Loading…
Reference in New Issue