This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2011-11-13 10:04:44 +00:00
|
|
|
###| CMake Kiibohd Controller Macro Module |###
|
|
|
|
#
|
2014-04-06 18:49:27 +00:00
|
|
|
# Written by Jacob Alexander in 2011,2014 for the Kiibohd Controller
|
2011-11-13 10:04:44 +00:00
|
|
|
#
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
|
2014-04-06 18:49:27 +00:00
|
|
|
###
|
|
|
|
# Warning, this module has been deprecated
|
|
|
|
#
|
|
|
|
message( AUTHOR_WARNING
|
|
|
|
"The 'buffer' macro module has been deprecated in favour of 'Partial Map'.
|
|
|
|
This module may or may not compile/function properly.
|
|
|
|
It has been kept for historical purposes."
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2011-11-13 10:04:44 +00:00
|
|
|
###
|
|
|
|
# Module C files
|
|
|
|
#
|
|
|
|
|
|
|
|
set( MACRO_SRCS
|
|
|
|
macro.c
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module Specific Options
|
|
|
|
#
|
|
|
|
|
2013-01-30 23:13:49 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Compiler Family Compatibility
|
|
|
|
#
|
|
|
|
set( MacroModuleCompatibility
|
|
|
|
arm
|
|
|
|
avr
|
|
|
|
)
|
|
|
|
|