-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
72 lines (65 loc) · 1.65 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
target(cake)
target_sources(cake
cake.cpp
cake.h
cake_Defs.h
cake_Namespace.h
cake_Types.cpp
cake_Types.h
cake_Assert.h
cake_Debug.cpp
cake_Debug.hpp
cake_Debug.h
memory/cake_Memory.cpp
memory/cake_Memory.hpp
memory/cake_Memory.h
memory/cake_Register.cpp
memory/cake_Register.hpp
memory/cake_Register.h
memory/cake_Eeprom.cpp
memory/cake_Eeprom.hpp
memory/cake_Eeprom.h
memory/cake_GeneralPurposeRegisters.cpp
memory/cake_GeneralPurposeRegisters.hpp
memory/cake_GeneralPurposeRegisters.h
memory/cake_ProgramSpace.cpp
memory/cake_ProgramSpace.hpp
memory/cake_ProgramSpace.h
memory/cake_RingBuffer.cpp
memory/cake_RingBuffer.hpp
memory/cake_RingBuffer.h
time/cake_Timer.cpp
time/cake_Timer.hpp
time/cake_Timer.h
interrupts/cake_Atomic.cpp
interrupts/cake_Atomic.hpp
interrupts/cake_Atomic.h
interrupts/cake_ExternalInterrupt.cpp
interrupts/cake_ExternalInterrupt.hpp
interrupts/cake_ExternalInterrupt.h
interrupts/cake_PinChangeInterrupts.cpp
interrupts/cake_PinChangeInterrupts.hpp
interrupts/cake_PinChangeInterrupts.h
interrupts/cake_BadIsrCatcher.cpp
io/cake_Analog.cpp
io/cake_Analog.hpp
io/cake_Analog.h
io/cake_Gpio.cpp
io/cake_Gpio.hpp
io/cake_Gpio.h
io/cake_HardwareSerial.cpp
io/cake_HardwareSerial.hpp
io/cake_HardwareSerial.h
io/cake_HardwareSerial_Devices.h
io/cake_I2C.cpp
io/cake_I2C.hpp
io/cake_I2C.h
io/cake_Spi.cpp
io/cake_Spi.hpp
io/cake_Spi.h
)
target_defs(cake
AVR_CAKE=1
AVR_BREAK_ON_ASSERT=1
)
build_static_library(cake)