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 |###
|
|
|
|
#
|
|
|
|
# Written by Jacob Alexander in 2011 for the Kiibohd Controller
|
|
|
|
#
|
|
|
|
# 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
|
|
|
)
|
|
|
|
|
|
|
|
|
2011-11-29 06:20:04 +00:00
|
|
|
###
|
|
|
|
# Setup File Dependencies
|
|
|
|
#
|
|
|
|
add_file_dependencies( ../led/led.c ../led/led.h )
|
|
|
|
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|