diff options
| author | 2019-08-24 15:57:49 +0200 | |
|---|---|---|
| committer | 2020-01-23 20:55:26 +0100 | |
| commit | ac3690f2057fb93ce18f156ff5ffd720a6d6f60c (patch) | |
| tree | d0ec80a2537b992146d34f5bf17ba0cc549bd88e /src/input_common/CMakeLists.txt | |
| parent | Merge pull request #3341 from bunnei/time-posix-myrule (diff) | |
| download | yuzu-ac3690f2057fb93ce18f156ff5ffd720a6d6f60c.tar.gz yuzu-ac3690f2057fb93ce18f156ff5ffd720a6d6f60c.tar.xz yuzu-ac3690f2057fb93ce18f156ff5ffd720a6d6f60c.zip | |
Input: UDP Client to provide motion and touch controls
An implementation of the cemuhook motion/touch protocol, this adds the
ability for users to connect several different devices to citra to send
direct motion and touch data to citra.
Co-Authored-By: jroweboy <jroweboy@gmail.com>
Diffstat (limited to 'src/input_common/CMakeLists.txt')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 5b4e032bd..2520ba321 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -9,6 +9,12 @@ add_library(input_common STATIC | |||
| 9 | motion_emu.h | 9 | motion_emu.h |
| 10 | sdl/sdl.cpp | 10 | sdl/sdl.cpp |
| 11 | sdl/sdl.h | 11 | sdl/sdl.h |
| 12 | udp/client.cpp | ||
| 13 | udp/client.h | ||
| 14 | udp/protocol.cpp | ||
| 15 | udp/protocol.h | ||
| 16 | udp/udp.cpp | ||
| 17 | udp/udp.h | ||
| 12 | ) | 18 | ) |
| 13 | 19 | ||
| 14 | if(SDL2_FOUND) | 20 | if(SDL2_FOUND) |
| @@ -21,4 +27,4 @@ if(SDL2_FOUND) | |||
| 21 | endif() | 27 | endif() |
| 22 | 28 | ||
| 23 | create_target_directory_groups(input_common) | 29 | create_target_directory_groups(input_common) |
| 24 | target_link_libraries(input_common PUBLIC core PRIVATE common) | 30 | target_link_libraries(input_common PUBLIC core PRIVATE common ${Boost_LIBRARIES}) |