forked from kiibohd/controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cmake
More file actions
41 lines (31 loc) · 668 Bytes
/
Copy pathsetup.cmake
File metadata and controls
41 lines (31 loc) · 668 Bytes
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
###| CMake Kiibohd Controller Scan Module |###
#
# Written by Jacob Alexander in 2014-2017 for the Kiibohd Controller
#
# Released into the Public Domain
#
###
###
# Sub-module flag, cannot be included stand-alone
#
set ( SubModule 1 )
###
# Module C files
#
set ( Module_SRCS
matrix_scan.c
)
###
# Header file dependency tracking
#
set_property (
SOURCE ${CMAKE_CURRENT_LIST_DIR}/matrix_scan.c
APPEND PROPERTY OBJECT_DEPENDS ${MatrixARM_Path}/matrix.h
)
###
# Compiler Family Compatibility
#
set ( ModuleCompatibility
arm
)
message( FATAL_ERROR "MatrixARM has been deprecated in favour of MatrixARMPeriodic. Your scan module will need to be updated." )