-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CDImageDevice: Implement disc reading for Linux
And fix it for Windows. SubQ reading should now work.
- Loading branch information
Showing
6 changed files
with
790 additions
and
152 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
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,32 @@ | ||
# - Try to find UDEV | ||
# Once done, this will define | ||
# | ||
# UDEV_FOUND - system has UDEV | ||
# UDEV_INCLUDE_DIRS - the UDEV include directories | ||
# UDEV_LIBRARIES - the UDEV library | ||
find_package(PkgConfig) | ||
|
||
pkg_check_modules(UDEV_PKGCONF libudev) | ||
|
||
find_path(UDEV_INCLUDE_DIRS | ||
NAMES libudev.h | ||
PATHS ${UDEV_PKGCONF_INCLUDE_DIRS} | ||
) | ||
|
||
find_library(UDEV_LIBRARIES | ||
NAMES udev | ||
PATHS ${UDEV_PKGCONF_LIBRARY_DIRS} | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(UDEV DEFAULT_MSG UDEV_INCLUDE_DIRS UDEV_LIBRARIES) | ||
|
||
mark_as_advanced(UDEV_INCLUDE_DIRS UDEV_LIBRARIES) | ||
|
||
if(UDEV_FOUND AND NOT (TARGET UDEV::UDEV)) | ||
add_library (UDEV::UDEV UNKNOWN IMPORTED) | ||
set_target_properties(UDEV::UDEV | ||
PROPERTIES | ||
IMPORTED_LOCATION ${UDEV_LIBRARIES} | ||
INTERFACE_INCLUDE_DIRECTORIES ${UDEV_INCLUDE_DIRS}) | ||
endif() |
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
Oops, something went wrong.