Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge branch 'wii-network'
210 commits, more than 2 years of work, one of the most awaited features for Dolphin. Thanks a lot to Matthew Parlane and Shawn Hoffman for their work on wii-network. There are still a few rough edges, expect some bugs, maybe some regressions. Please do as much testing as you can.
- Loading branch information
Showing
194 changed files
with
56,078 additions
and
2,661 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # - Find libusb-1.0 library | ||
| # This module defines | ||
| # LIBUSB_INCLUDE_DIR, where to find bluetooth.h | ||
| # LIBUSB_LIBRARIES, the libraries needed to use libusb-1.0. | ||
| # LIBUSB_FOUND, If false, do not try to use libusb-1.0. | ||
| # | ||
| # Copyright (c) 2009, Michal Cihar, <michal@cihar.com> | ||
| # | ||
| # vim: expandtab sw=4 ts=4 sts=4: | ||
|
|
||
| if(ANDROID) | ||
| set(LIBUSB_FOUND FALSE CACHE INTERNAL "libusb-1.0 found") | ||
| message(STATUS "libusb-1.0 not found.") | ||
| elseif (NOT LIBUSB_FOUND) | ||
| pkg_check_modules (LIBUSB_PKG libusb-1.0) | ||
|
|
||
| find_path(LIBUSB_INCLUDE_DIR NAMES libusb.h | ||
| PATHS | ||
| ${LIBUSB_PKG_INCLUDE_DIRS} | ||
| /usr/include/libusb-1.0 | ||
| /usr/include | ||
| /usr/local/include/libusb-1.0 | ||
| /usr/local/include | ||
| ) | ||
|
|
||
| find_library(LIBUSB_LIBRARIES NAMES usb-1.0 | ||
| PATHS | ||
| ${LIBUSB_PKG_LIBRARY_DIRS} | ||
| /usr/lib | ||
| /usr/local/lib | ||
| ) | ||
|
|
||
| if(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) | ||
| set(LIBUSB_FOUND TRUE CACHE INTERNAL "libusb-1.0 found") | ||
| message(STATUS "Found libusb-1.0: ${LIBUSB_INCLUDE_DIR}, ${LIBUSB_LIBRARIES}") | ||
| else(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) | ||
| set(LIBUSB_FOUND FALSE CACHE INTERNAL "libusb-1.0 found") | ||
| message(STATUS "libusb-1.0 not found.") | ||
| endif(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) | ||
|
|
||
| mark_as_advanced(LIBUSB_INCLUDE_DIR LIBUSB_LIBRARIES) | ||
| endif (NOT LIBUSB_FOUND) | ||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.