diff options
| author | bunnei <bunneidev@gmail.com> | 2020-01-23 20:18:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-23 20:18:47 -0500 |
| commit | deb97f6a8e48c17f8e16efadc24872a860d529a7 (patch) | |
| tree | 79ca6164fcb03783bc19f1ec557cacdf0b3fc539 /src/input_common/CMakeLists.txt | |
| parent | a167da4278df6d864a8990f846cf3ede1158f3db (diff) | |
| parent | d01eb12f369eedae704c0e7ce0611f360302475b (diff) | |
Merge pull request #2800 from FearlessTobi/port-4049
Port citra-emu/citra#4049: "Input: UDP Client to provide motion and touch controls"
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 motion_emu.h sdl/sdl.cpp sdl/sdl.h + udp/client.cpp + udp/client.h + udp/protocol.cpp + udp/protocol.h + udp/udp.cpp + udp/udp.h ) if(SDL2_FOUND) @@ -21,4 +27,4 @@ if(SDL2_FOUND) endif() create_target_directory_groups(input_common) -target_link_libraries(input_common PUBLIC core PRIVATE common) +target_link_libraries(input_common PUBLIC core PRIVATE common ${Boost_LIBRARIES}) |
