diff options
| author | 2020-07-13 18:48:19 +0000 | |
|---|---|---|
| committer | 2020-07-13 18:48:19 +0000 | |
| commit | 883fab2fff5ff9bdad38eee4e55bacc520ce0cc9 (patch) | |
| tree | 63d754c60cb1962440a9c2fad52a4d19924b1434 /src/input_common/CMakeLists.txt | |
| parent | cmake: pass libusb include directory as well (diff) | |
| download | yuzu-883fab2fff5ff9bdad38eee4e55bacc520ce0cc9.tar.gz yuzu-883fab2fff5ff9bdad38eee4e55bacc520ce0cc9.tar.xz yuzu-883fab2fff5ff9bdad38eee4e55bacc520ce0cc9.zip | |
input_common: make libusb private to gc_adapter
Diffstat (limited to 'src/input_common/CMakeLists.txt')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 1d7e19a66..317c25bad 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -30,8 +30,8 @@ if(SDL2_FOUND) | |||
| 30 | target_compile_definitions(input_common PRIVATE HAVE_SDL2) | 30 | target_compile_definitions(input_common PRIVATE HAVE_SDL2) |
| 31 | endif() | 31 | endif() |
| 32 | 32 | ||
| 33 | target_include_directories(input_common SYSTEM PUBLIC ${LIBUSB_INCLUDE_DIR}) | 33 | target_include_directories(input_common SYSTEM PRIVATE ${LIBUSB_INCLUDE_DIR}) |
| 34 | target_link_libraries(input_common PUBLIC ${LIBUSB_LIBRARIES}) | 34 | target_link_libraries(input_common PRIVATE ${LIBUSB_LIBRARIES}) |
| 35 | 35 | ||
| 36 | create_target_directory_groups(input_common) | 36 | create_target_directory_groups(input_common) |
| 37 | target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost) | 37 | target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost) |