mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
BUILD: Refactor libusb submodule (#10169)
* relocate module files * fix cmake errors * moved & updated libusb MSVC build file
This commit is contained in:
parent
5724d2d4c7
commit
dece8a69f6
16 changed files with 154 additions and 154 deletions
17
3rdparty/libusb/cmake_modules/FindCoreFoundation.cmake
vendored
Normal file
17
3rdparty/libusb/cmake_modules/FindCoreFoundation.cmake
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
# CoreFoundation_INCLUDE_DIR
|
||||
# CoreFoundation_LIBRARIES
|
||||
# CoreFoundation_FOUND
|
||||
include(LibFindMacros)
|
||||
|
||||
find_path(CoreFoundation_INCLUDE_DIR
|
||||
CoreFoundation.h
|
||||
PATH_SUFFIXES CoreFoundation
|
||||
)
|
||||
|
||||
find_library(CoreFoundation_LIBRARY
|
||||
NAMES CoreFoundation
|
||||
)
|
||||
|
||||
set(CoreFoundation_PROCESS_INCLUDES CoreFoundation_INCLUDE_DIR)
|
||||
set(CoreFoundation_PROCESS_LIBS CoreFoundation_LIBRARY)
|
||||
libfind_process(CoreFoundation)
|
Loading…
Add table
Add a link
Reference in a new issue