This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2012-10-04 19:07:06 +00:00
|
|
|
###| CMake Kiibohd Controller Scan Module |###
|
|
|
|
#
|
2014-04-06 18:49:27 +00:00
|
|
|
# Written by Jacob Alexander in 2012,2014 for the Kiibohd Controller
|
2012-10-04 19:07:06 +00:00
|
|
|
#
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module C files
|
|
|
|
#
|
|
|
|
|
|
|
|
#| XXX Requires the ../ due to how the paths are constructed
|
|
|
|
set( SCAN_SRCS
|
|
|
|
../matrix/matrix_scan.c
|
|
|
|
../matrix/scan_loop.c
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module Specific Options
|
|
|
|
#
|
|
|
|
add_definitions(
|
|
|
|
-I${HEAD_DIR}/Scan/matrix
|
2014-03-31 08:07:48 +00:00
|
|
|
)
|
2012-10-04 19:07:06 +00:00
|
|
|
|
2013-01-30 23:13:49 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Compiler Family Compatibility
|
|
|
|
#
|
|
|
|
set( ScanModuleCompatibility
|
2014-04-10 03:06:19 +00:00
|
|
|
arm
|
2013-01-30 23:13:49 +00:00
|
|
|
avr
|
|
|
|
)
|
|
|
|
|