summaryrefslogtreecommitdiffstats
path: root/xbmc/input/CMakeLists.txt
blob: 3408cf003aa22108b501fcac7e9e1b416767c3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
set(SOURCES AppTranslator.cpp
            ButtonTranslator.cpp
            CustomControllerTranslator.cpp
            GamepadTranslator.cpp
            InertialScrollingHandler.cpp
            InputCodingTableBasePY.cpp
            InputCodingTableFactory.cpp
            InputCodingTableKorean.cpp
            InputManager.cpp
            InputTranslator.cpp
            IRTranslator.cpp
            JoystickMapper.cpp
            Key.cpp
            KeyboardLayout.cpp
            KeyboardLayoutManager.cpp
            KeyboardStat.cpp
            KeyboardTranslator.cpp
            Keymap.cpp
            KeymapEnvironment.cpp
            TouchTranslator.cpp
            WindowKeymap.cpp
            WindowTranslator.cpp
            XBMC_keytable.cpp)

set(HEADERS hardware/IHardwareInput.h
            remote/IRRemote.h
            AppTranslator.h
            ButtonTranslator.h
            CustomControllerTranslator.h
            GamepadTranslator.h
            IButtonMapper.h
            IKeymap.h
            IKeymapEnvironment.h
            InertialScrollingHandler.h
            InputCodingTable.h
            InputCodingTableBasePY.h
            InputCodingTableFactory.h
            InputCodingTableKorean.h
            InputManager.h
            InputTranslator.h
            InputTypes.h
            IRTranslator.h
            JoystickMapper.h
            Key.h
            KeyboardLayout.h
            KeyboardLayoutManager.h
            KeyboardStat.h
            KeyboardTranslator.h
            Keymap.h
            KeymapEnvironment.h
            TouchTranslator.h
            WindowTranslator.h
            WindowKeymap.h
            XBMC_keyboard.h
            XBMC_keysym.h
            XBMC_keytable.h
            XBMC_vkeys.h)

core_add_library(input)