b4c1951b0d
- Differentiating between simple and complex macros - Worst case requires more flash - Best case will use a lot less RAM - Requires update to kll compiler
30 lines
362 B
CMake
30 lines
362 B
CMake
###| CMake Kiibohd Controller Macro Module |###
|
|
#
|
|
# Written by Jacob Alexander in 2014-2015 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
|
|
)
|
|
|
|
|
|
###
|
|
# Compiler Family Compatibility
|
|
#
|
|
set ( ModuleCompatibility
|
|
arm
|
|
avr
|
|
)
|
|
|