]> git.donarmstrong.com Git - kiibohd-controller.git/blob - CMakeLists.txt
Adding support for the Micro Switch 8304 Hall Effect Keyboard
[kiibohd-controller.git] / CMakeLists.txt
1 ###| CMAKE Kiibohd Controller |###
2 #
3 # Written by Jacob Alexander in 2011 for the Kiibohd Controller
4 # Due to this file's usefulness:
5 #
6 # Released into the Public Domain
7 #
8 ###
9
10 #| Set the Compilers (must be set first)
11 include( CMakeForceCompiler )
12 cmake_force_c_compiler  ( avr-gcc AVRCCompiler )
13 cmake_force_cxx_compiler( avr-g++ AVRCxxCompiler )
14
15
16 #| Add Dependency Macro
17 include( AddFileDependencies )
18
19
20 ###
21 # Project Description
22 #
23
24 #| Project
25 project( kiibohd_controller )
26
27 #| Target Name (output name)
28 set( TARGET kiibohd )
29
30 #| General Settings
31 cmake_minimum_required( VERSION 2.8 )
32
33
34
35 ###
36 # Source Defines
37 #
38
39 #| Sources (see setup.h for configuring in/away code blocks or other complete modules)
40 #| XXX Not set here in this project, see setup.cmake
41 #set( SRCS ./main.c )
42
43 #| Instead, include the module source selector
44 include( setup.cmake )
45 set( SRCS
46         main.c
47         ${SCAN_SRCS}
48         ${MACRO_SRCS}
49         ${USB_SRCS}
50         ${DEBUG_SRCS}
51 )
52
53
54
55 ###
56 # Atmel Defines and Linker Options
57 #
58
59 #| MCU Name
60 #| You _MUST_ set this to match the board you are using
61 #| type "make clean" after changing this, so all files will be rebuilt
62 #|
63 #| "at90usb162"       # Teensy   1.0
64 #| "atmega32u4"       # Teensy   2.0
65 #| "at90usb646"       # Teensy++ 1.0
66 #| "at90usb1286"      # Teensy++ 2.0
67 set( MCU "atmega32u4" )
68
69
70 #| Compiler flag to set the C Standard level.
71 #|     c89   = "ANSI" C
72 #|     gnu89 = c89 plus GCC extensions
73 #|     c99   = ISO C99 standard (not yet fully implemented)
74 #|     gnu99 = c99 plus GCC extensions
75 set( CSTANDARD "-std=gnu99" )
76
77
78 #| Warning Options
79 #|  -Wall...:     warning level
80 set( WARN "-Wall -Wstrict-prototypes" )
81
82
83 #| Tuning Options
84 #|  -f...:        tuning, see GCC manual and avr-libc documentation
85 set( TUNING "-funsigned-char -funsigned-bitfields -ffunction-sections -fpack-struct -fshort-enums" )
86
87
88 #| Optimization level, can be [0, 1, 2, 3, s]. 
89 #|     0 = turn off optimization. s = optimize for size.
90 #|     (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
91 set( OPT "s" )
92
93
94 #| Output Format
95 #| srec, ihex, binary
96 set( FORMAT "ihex" )
97
98
99 #| Processor frequency.
100 #|   Normally the first thing your program should do is set the clock prescaler,
101 #|   so your program will run at the correct speed.  You should also set this
102 #|   variable to same clock speed.  The _delay_ms() macro uses this, and many
103 #|   examples use this variable to calculate timings.  Do not add a "UL" here.
104 set( F_CPU "16000000" )
105
106
107 #| Dependency Files
108 #| Compiler flags to generate dependency files.
109 set( GENDEPFLAGS "-MMD -MP" )
110
111
112 #| Listing file
113 set( TARGET_LST ${TARGET}.lst )
114
115
116 #| Compiler Flags
117 add_definitions( "-mmcu=${MCU} -DF_CPU=${F_CPU} -O${OPT} ${TUNING} ${WARN} ${CSTANDARD} ${GENDEPFLAGS}" )
118
119
120 #| Linker Flags
121 set( LINKER_FLAGS "-mmcu=${MCU} -Wl,-Map=${TARGET}.map,--cref -Wl,--relax -Wl,--gc-sections" )
122
123
124 #| Hex Flags (XXX, CMake seems to have issues if you quote the arguments for the custom commands...)
125 set( HEX_FLAGS -O ${FORMAT} -R .eeprom -R .fuse -R .lock -R .signature )
126
127
128 #| Eep Flags
129 set( EEP_FLAGS -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O ${FORMAT} )
130
131
132 #| Lss Flags
133 set( LSS_FLAGS -h -S -z )
134
135
136
137 ###
138 # Build Targets
139 #
140
141 #| Create the .ELF file
142 set( TARGET_ELF ${TARGET}.elf )
143 add_executable( ${TARGET_ELF} ${SRCS} )
144
145
146 #| .ELF Properties
147 set_target_properties( ${TARGET_ELF} PROPERTIES
148         LINK_FLAGS ${LINKER_FLAGS}
149 )
150
151
152 #| Convert the .ELF into a .HEX to load onto the Teensy
153 set( TARGET_HEX ${TARGET}.hex )
154 add_custom_command( TARGET ${TARGET_ELF} POST_BUILD
155         COMMAND avr-objcopy ${HEX_FLAGS} ${TARGET_ELF} ${TARGET_HEX}
156         COMMENT "Creating load file for Flash:  ${TARGET_HEX}"
157 )
158
159
160 #| Convert the .ELF into a .EEP
161 set( TARGET_EEP ${TARGET}.eep )
162 add_custom_command( TARGET ${TARGET_ELF} POST_BUILD
163         COMMAND avr-objcopy ${EEP_FLAGS} ${TARGET_ELF} ${TARGET_EEP}
164         COMMENT "Creating load file for EEPROM: ${TARGET_EEP}"
165 )
166
167
168 #| Generate the Extended .LSS
169 set( TARGET_LSS ${TARGET}.lss )
170 add_custom_command( TARGET ${TARGET_ELF} POST_BUILD
171         COMMAND avr-objdump ${LSS_FLAGS} ${TARGET_ELF} > ${TARGET_LSS}
172         COMMENT "Creating Extended Listing:     ${TARGET_LSS}"
173 )
174
175
176 #| Generate the Symbol Table .SYM
177 set( TARGET_SYM ${TARGET}.sym )
178 add_custom_command( TARGET ${TARGET_ELF} POST_BUILD
179         COMMAND avr-nm -n ${TARGET_ELF} > ${TARGET_SYM}
180         COMMENT "Creating Symbol Table:         ${TARGET_SYM}"
181 )
182
183
184
185 ###
186 # Size Information
187 #
188
189 #| After Changes Size Information
190 add_custom_target( SizeAfter ALL avr-size --target=${FORMAT} ${TARGET_HEX} ${TARGET_ELF}
191         DEPENDS ${TARGET_ELF}
192         COMMENT "Size after generation:"
193 )
194
195
196
197 ###
198 # Setup Loader Script
199 #
200
201 #| Provides the user with the correct teensy-loader-cli command for the built .HEX file
202 #| teensy-loader-cli must be in the user's path
203 if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
204         configure_file( LoadFile/bash load )
205 endif( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
206
207 #| TODO Windows
208 if( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
209         message( STATUS "Load Script is on my TODO List for Windows..." )
210 endif( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
211