]> git.donarmstrong.com Git - kiibohd-controller.git/blob - avr.cmake
Updating CMake build system to prepare for Teensy 3 integration.
[kiibohd-controller.git] / avr.cmake
1 ###| CMAKE Kiibohd Controller |###
2 #
3 # Jacob Alexander 2011-2013
4 # Due to this file's usefulness:
5 #
6 # Released into the Public Domain
7 #
8 # avr-gcc CMake Build Configuration
9 #
10 ###
11
12
13
14 #| Set the Compilers (must be set first)
15 include( CMakeForceCompiler )
16 cmake_force_c_compiler  ( avr-gcc AVRCCompiler )
17 cmake_force_cxx_compiler( avr-g++ AVRCxxCompiler )
18
19
20 #| Compiler Binaries
21 set( OBJCOPY "avr-objcopy" )
22 set( OBJDUMP "avr-objdump" )
23 set( NM      "avr-nm"      )
24 set( SIZE    "avr-size"    )
25
26
27
28 ###
29 # Atmel Defines and Linker Options
30 #
31
32 #| MCU Name
33 #| You _MUST_ set this to match the board you are using
34 #| type "make clean" after changing this, so all files will be rebuilt
35 #|
36 #| "at90usb162"       # Teensy   1.0
37 #| "atmega32u4"       # Teensy   2.0
38 #| "at90usb646"       # Teensy++ 1.0
39 #| "at90usb1286"      # Teensy++ 2.0
40 #set( MCU "atmega32u4" )
41 set( MCU "at90usb1286" )
42
43
44 #| Extra Compiler Sources
45 #| Mostly for convenience functions like interrupt handlers
46 set( COMPILER_SRCS
47         # XXX Not needed for avr-gcc
48 )
49
50
51 #| Compiler flag to set the C Standard level.
52 #|     c89   = "ANSI" C
53 #|     gnu89 = c89 plus GCC extensions
54 #|     c99   = ISO C99 standard (not yet fully implemented)
55 #|     gnu99 = c99 plus GCC extensions
56 set( CSTANDARD "-std=gnu99" )
57
58
59 #| Warning Options
60 #|  -Wall...:     warning level
61 set( WARN "-Wall -Wstrict-prototypes" )
62
63
64 #| Tuning Options
65 #|  -f...:        tuning, see GCC manual and avr-libc documentation
66 set( TUNING "-funsigned-char -funsigned-bitfields -ffunction-sections -fpack-struct -fshort-enums" )
67
68
69 #| Optimization level, can be [0, 1, 2, 3, s]. 
70 #|     0 = turn off optimization. s = optimize for size.
71 #|     (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
72 set( OPT "s" )
73
74
75 #| Output Format
76 #| srec, ihex, binary
77 set( FORMAT "ihex" )
78
79
80 #| Processor frequency.
81 #|   Normally the first thing your program should do is set the clock prescaler,
82 #|   so your program will run at the correct speed.  You should also set this
83 #|   variable to same clock speed.  The _delay_ms() macro uses this, and many
84 #|   examples use this variable to calculate timings.  Do not add a "UL" here.
85 set( F_CPU "16000000" )
86
87
88 #| Dependency Files
89 #| Compiler flags to generate dependency files.
90 set( GENDEPFLAGS "-MMD -MP" )
91
92
93 #| Compiler Flags
94 add_definitions( "-mmcu=${MCU} -DF_CPU=${F_CPU} -O${OPT} ${TUNING} ${WARN} ${CSTANDARD} ${GENDEPFLAGS}" )
95
96
97 #| Linker Flags
98 set( LINKER_FLAGS "-mmcu=${MCU} -Wl,-Map=${TARGET}.map,--cref -Wl,--relax -Wl,--gc-sections" )
99
100
101 #| Hex Flags (XXX, CMake seems to have issues if you quote the arguments for the custom commands...)
102 set( HEX_FLAGS -O ${FORMAT} -R .eeprom -R .fuse -R .lock -R .signature )
103
104
105 #| Eep Flags
106 set( EEP_FLAGS -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O ${FORMAT} )
107
108
109 #| Lss Flags
110 set( LSS_FLAGS -h -S -z )
111