diff options
| author | 2021-12-18 13:57:14 +0800 | |
|---|---|---|
| committer | 2021-12-18 13:57:14 +0800 | |
| commit | e49184e6069a9d791d2df3c1958f5c4b1187e124 (patch) | |
| tree | b776caf722e0be0e680f67b0ad0842628162ef1c /src/input_common/CMakeLists.txt | |
| parent | Implement convert legacy to generic (diff) | |
| parent | Merge pull request #7570 from ameerj/favorites-expanded (diff) | |
| download | yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.tar.gz yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.tar.xz yuzu-e49184e6069a9d791d2df3c1958f5c4b1187e124.zip | |
Merge branch 'yuzu-emu:master' into convert_legacy
Diffstat (limited to 'src/input_common/CMakeLists.txt')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 60 |
1 files changed, 28 insertions, 32 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index dd13d948f..d4fa69a77 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -1,36 +1,32 @@ | |||
| 1 | add_library(input_common STATIC | 1 | add_library(input_common STATIC |
| 2 | analog_from_button.cpp | 2 | drivers/gc_adapter.cpp |
| 3 | analog_from_button.h | 3 | drivers/gc_adapter.h |
| 4 | keyboard.cpp | 4 | drivers/keyboard.cpp |
| 5 | keyboard.h | 5 | drivers/keyboard.h |
| 6 | drivers/mouse.cpp | ||
| 7 | drivers/mouse.h | ||
| 8 | drivers/sdl_driver.cpp | ||
| 9 | drivers/sdl_driver.h | ||
| 10 | drivers/tas_input.cpp | ||
| 11 | drivers/tas_input.h | ||
| 12 | drivers/touch_screen.cpp | ||
| 13 | drivers/touch_screen.h | ||
| 14 | drivers/udp_client.cpp | ||
| 15 | drivers/udp_client.h | ||
| 16 | helpers/stick_from_buttons.cpp | ||
| 17 | helpers/stick_from_buttons.h | ||
| 18 | helpers/touch_from_buttons.cpp | ||
| 19 | helpers/touch_from_buttons.h | ||
| 20 | helpers/udp_protocol.cpp | ||
| 21 | helpers/udp_protocol.h | ||
| 22 | input_engine.cpp | ||
| 23 | input_engine.h | ||
| 24 | input_mapping.cpp | ||
| 25 | input_mapping.h | ||
| 26 | input_poller.cpp | ||
| 27 | input_poller.h | ||
| 6 | main.cpp | 28 | main.cpp |
| 7 | main.h | 29 | main.h |
| 8 | motion_from_button.cpp | ||
| 9 | motion_from_button.h | ||
| 10 | motion_input.cpp | ||
| 11 | motion_input.h | ||
| 12 | touch_from_button.cpp | ||
| 13 | touch_from_button.h | ||
| 14 | gcadapter/gc_adapter.cpp | ||
| 15 | gcadapter/gc_adapter.h | ||
| 16 | gcadapter/gc_poller.cpp | ||
| 17 | gcadapter/gc_poller.h | ||
| 18 | mouse/mouse_input.cpp | ||
| 19 | mouse/mouse_input.h | ||
| 20 | mouse/mouse_poller.cpp | ||
| 21 | mouse/mouse_poller.h | ||
| 22 | sdl/sdl.cpp | ||
| 23 | sdl/sdl.h | ||
| 24 | tas/tas_input.cpp | ||
| 25 | tas/tas_input.h | ||
| 26 | tas/tas_poller.cpp | ||
| 27 | tas/tas_poller.h | ||
| 28 | udp/client.cpp | ||
| 29 | udp/client.h | ||
| 30 | udp/protocol.cpp | ||
| 31 | udp/protocol.h | ||
| 32 | udp/udp.cpp | ||
| 33 | udp/udp.h | ||
| 34 | ) | 30 | ) |
| 35 | 31 | ||
| 36 | if (MSVC) | 32 | if (MSVC) |
| @@ -57,8 +53,8 @@ endif() | |||
| 57 | 53 | ||
| 58 | if (ENABLE_SDL2) | 54 | if (ENABLE_SDL2) |
| 59 | target_sources(input_common PRIVATE | 55 | target_sources(input_common PRIVATE |
| 60 | sdl/sdl_impl.cpp | 56 | drivers/sdl_driver.cpp |
| 61 | sdl/sdl_impl.h | 57 | drivers/sdl_driver.h |
| 62 | ) | 58 | ) |
| 63 | target_link_libraries(input_common PRIVATE SDL2) | 59 | target_link_libraries(input_common PRIVATE SDL2) |
| 64 | target_compile_definitions(input_common PRIVATE HAVE_SDL2) | 60 | target_compile_definitions(input_common PRIVATE HAVE_SDL2) |