comparison CMakeLists.txt @ 308:ab4515606277

Fix whitespace Use a consistent standard - Tabs in front for indenting, spaces after for anything else. This way everything stays nice and lined up while also letting users change there prefered indent level. Most of the new files from Haata where already in this format.
author Rowan Decker <Smasher816@gmail.com>
date Sun, 08 Mar 2015 18:40:01 -0700
parents 4739cb8920b8
children 9e31d92caf12
comparison
equal deleted inserted replaced
305:4617ef5e06f1 308:ab4515606277
15 15
16 #| You _MUST_ set this to match the microcontroller you are trying to compile for 16 #| You _MUST_ set this to match the microcontroller you are trying to compile for
17 #| You _MUST_ clean the build directory if you change this value 17 #| You _MUST_ clean the build directory if you change this value
18 #| 18 #|
19 set( CHIP 19 set( CHIP
20 # "at90usb162" # Teensy 1.0 (avr) 20 # "at90usb162" # Teensy 1.0 (avr)
21 # "atmega32u4" # Teensy 2.0 (avr) 21 # "atmega32u4" # Teensy 2.0 (avr)
22 # "at90usb646" # Teensy++ 1.0 (avr) 22 # "at90usb646" # Teensy++ 1.0 (avr)
23 # "at90usb1286" # Teensy++ 2.0 (avr) 23 # "at90usb1286" # Teensy++ 2.0 (avr)
24 # "mk20dx128" # Teensy 3.0 (arm) 24 # "mk20dx128" # Teensy 3.0 (arm)
25 "mk20dx128vlf5" # McHCK mk20dx128vlf5 25 "mk20dx128vlf5" # McHCK mk20dx128vlf5
26 # "mk20dx256" # Teensy 3.1 (arm) 26 # "mk20dx256" # Teensy 3.1 (arm)
27 # "mk20dx256vlh7" # Kiibohd-dfu mk20dx256vlh7 27 # "mk20dx256vlh7" # Kiibohd-dfu mk20dx256vlh7
28 CACHE STRING "Microcontroller Chip" ) 28 CACHE STRING "Microcontroller Chip" )
29 29
30 30
31 31
32 ### 32 ###
35 35
36 #| *** EXPERIMENTAL *** 36 #| *** EXPERIMENTAL ***
37 #| Stick with gcc unless you know what you're doing 37 #| Stick with gcc unless you know what you're doing
38 #| Currently only arm is supported with clang 38 #| Currently only arm is supported with clang
39 set( COMPILER 39 set( COMPILER
40 "gcc" # arm-none-eabi-gcc / avr-gcc - Default 40 "gcc" # arm-none-eabi-gcc / avr-gcc - Default
41 # "clang" # arm-none-eabi 41 # "clang" # arm-none-eabi
42 CACHE STRING "Compiler Type" ) 42 CACHE STRING "Compiler Type" )
43 43
44 44
45 45
46 ### 46 ###