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
33 lines
364 B
CMake
33 lines
364 B
CMake
###| CMake Kiibohd Controller PartialMap Macro Module |###
|
|
#
|
|
# Written by Jacob Alexander in 2014-2015 for the Kiibohd Controller
|
|
#
|
|
# Released into the Public Domain
|
|
#
|
|
###
|
|
|
|
|
|
###
|
|
# Required Sub-modules
|
|
#
|
|
AddModule ( Macro Common )
|
|
|
|
|
|
###
|
|
# Module C files
|
|
#
|
|
|
|
set ( Module_SRCS
|
|
macro.c
|
|
)
|
|
|
|
|
|
###
|
|
# Compiler Family Compatibility
|
|
#
|
|
set ( ModuleCompatibility
|
|
arm
|
|
avr
|
|
)
|
|
|