This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2011-09-29 06:25:51 +00:00
|
|
|
###| CMake Kiibohd Controller Debug Module |###
|
|
|
|
#
|
2014-04-06 18:49:27 +00:00
|
|
|
# Written by Jacob Alexander in 2011,2014 for the Kiibohd Controller
|
2011-09-29 06:25:51 +00:00
|
|
|
#
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module C files
|
|
|
|
#
|
|
|
|
|
|
|
|
set( DEBUG_SRCS
|
2011-09-30 05:22:19 +00:00
|
|
|
led.c
|
2011-09-29 06:25:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module Specific Options
|
|
|
|
#
|
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Just in case, you only want this module and are using others as well
|
|
|
|
#
|
|
|
|
add_definitions( -I${HEAD_DIR}/Debug/off )
|
|
|
|
|
2013-01-30 23:13:49 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Compiler Family Compatibility
|
|
|
|
#
|
|
|
|
set( DebugModuleCompatibility
|
|
|
|
arm
|
|
|
|
avr
|
|
|
|
)
|
|
|
|
|