diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-20 18:48:02 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-20 18:48:02 +0200 |
commit | abbe80fc5db33332cc2b8695ed26fb89b9832bf2 (patch) | |
tree | 36993cc72897a7135e35df5dc708ccdeb7873686 /video-ps3eye | |
parent | 865fb039b94183b143bfaea030b3bcecbe470e1b (diff) |
video/ps3eye: quick hack to fix pkgconfig imported target
Diffstat (limited to 'video-ps3eye')
-rw-r--r-- | video-ps3eye/CMakeLists.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/video-ps3eye/CMakeLists.txt b/video-ps3eye/CMakeLists.txt index 83bac8f3..50aba75e 100644 --- a/video-ps3eye/CMakeLists.txt +++ b/video-ps3eye/CMakeLists.txt @@ -4,7 +4,7 @@ if(WIN32) else() include(FindPkgConfig) if(PKG_CONFIG_FOUND) - pkg_check_modules(lusb QUIET "libusb") + pkg_check_modules(lusb "libusb" QUIET) endif() endif() @@ -29,9 +29,6 @@ if(WIN32) include_directories(${lusb_INCLUDE_DIRS}) add_link_options(${lusb_LDFLAGS}) link_libraries(${lusb_LIBRARIES}) - if(WIN32) - otr_install_lib(libusb "${opentrack-hier-path}") - endif() endif() if(found) |