-
Notifications
You must be signed in to change notification settings - Fork 271
/
setup.cmake
53 lines (40 loc) · 1.31 KB
/
setup.cmake
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
###| CMake Kiibohd Controller Scan Module |###
#
# Written by Jacob Alexander in 2016-2018 for the Kiibohd Controller
#
# Released into the Public Domain
#
###
###
# Required Submodules
#
###
# Module C files
#
set ( Module_SRCS
scan_loop.c
)
###
# Compiler Family Compatibility
#
set ( ModuleCompatibility
host
)
###
# Configure host side Python scripts
#
configure_file ( Scan/TestIn/interface.py Tests/interface.py NEWLINE_STYLE UNIX )
configure_file ( Scan/TestIn/gdb Tests/gdb COPYONLY )
configure_file ( Scan/TestIn/lldb Tests/lldb COPYONLY )
###
# Test cases
#
configure_file ( Scan/TestIn/Tests/common.py Tests/common.py COPYONLY )
configure_file ( Scan/TestIn/Tests/kiilogger.py Tests/kiilogger.py COPYONLY )
configure_file ( Scan/TestIn/Tests/test.py Tests/test.py COPYONLY )
configure_file ( Scan/TestIn/Tests/kll.py Tests/kll.py COPYONLY )
configure_file ( Scan/TestIn/Tests/layers.py Tests/layers.py COPYONLY )
configure_file ( Scan/TestIn/Tests/animation.py Tests/animation.py COPYONLY )
configure_file ( Scan/TestIn/Tests/animation2.py Tests/animation2.py COPYONLY )
configure_file ( Scan/TestIn/Tests/cli.py Tests/cli.py COPYONLY )
configure_file ( Scan/TestIn/Tests/hidio.py Tests/hidio.py COPYONLY )