-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
47 lines (38 loc) · 1.33 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
cmake_minimum_required(VERSION 3.12)
include($ENV{PICO_SDK_PATH}/pico_sdk_init.cmake)
project(pico_development C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
# Initialize the SDK
pico_sdk_init()
add_compile_options(-Wall
-Wno-format # int != int32_t as far as the compiler is concerned because gcc has int32_t as long int
-Wno-unused-function # we have some for the docs that aren't called
-Wno-maybe-uninitialized
)
add_executable(trafficlight
main.cpp
controller.h
controller.cpp
trafficlight.h
trafficlight.cpp
trafficlight_group.h
trafficlight_group.cpp
sequence.h
sequence.cpp
common_sequences.h
Systems/abstract_system.h
Systems/light_test_system.h
Systems/light_test_system.cpp
Systems/sequenced_interruptable_system.h
Systems/sequenced_interruptable_system.cpp
Systems/single_interruptable_crossing_system.h
Systems/single_interruptable_crossing_system.cpp
Systems/na_stop_give_way_system.h
Systems/na_stop_give_way_system.cpp
)
target_link_libraries(trafficlight pico_stdlib)
target_link_libraries(trafficlight pico_multicore)
pico_enable_stdio_usb(trafficlight 1)
pico_enable_stdio_uart(trafficlight 1)
pico_add_extra_outputs(trafficlight)