]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Debug/full/setup.cmake
Major code cleanup and preparation for PartialMap Macro Module
[kiibohd-controller.git] / Debug / full / setup.cmake
1 ###| CMake Kiibohd Controller Debug Module |###
2 #
3 # Written by Jacob Alexander in 2011-2014 for the Kiibohd Controller
4 #
5 # Released into the Public Domain
6 #
7 ###
8
9
10 ###
11 # Module C files
12 #
13
14 #| XXX Requires the ../ due to how the paths are constructed
15 set( DEBUG_SRCS
16         ../cli/cli.c
17         ../led/led.c
18         ../print/print.c
19 )
20
21
22 ###
23 # Module Specific Options
24 #
25 add_definitions(
26         -I${HEAD_DIR}/Debug/cli
27         -I${HEAD_DIR}/Debug/led
28         -I${HEAD_DIR}/Debug/print
29 )
30
31
32 ###
33 # Compiler Family Compatibility
34 #
35 set( DebugModuleCompatibility
36         arm
37         avr
38 )
39