diff options
| author | bunnei <bunneidev@gmail.com> | 2020-11-29 22:59:50 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-29 22:59:50 -0800 |
| commit | 7bc3e80399d62aabe4acbba094d0fff23a187186 (patch) | |
| tree | ac12ca41f34fdda51992fedfeb55b169dedcfcaf /src/input_common/CMakeLists.txt | |
| parent | 63b3b25715cd1c1a8b196f3cbdf73fc7873f444c (diff) | |
| parent | e46f0e084c73420f8c76c514079952ca0acf1ebe (diff) | |
Merge pull request #4939 from german77/MouseInput
InputCommon: Implement full mouse support
Diffstat (limited to 'src/input_common/CMakeLists.txt')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 5682e5ca5..38ab31898 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt @@ -5,8 +5,6 @@ add_library(input_common STATIC keyboard.h main.cpp main.h - motion_emu.cpp - motion_emu.h motion_from_button.cpp motion_from_button.h motion_input.cpp @@ -19,6 +17,10 @@ add_library(input_common STATIC gcadapter/gc_adapter.h gcadapter/gc_poller.cpp gcadapter/gc_poller.h + mouse/mouse_input.cpp + mouse/mouse_input.h + mouse/mouse_poller.cpp + mouse/mouse_poller.h sdl/sdl.cpp sdl/sdl.h udp/client.cpp |
