blob: 758ac2d1bbaf0e2b89805e85fc199a6ae4019f40 (
plain)
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
|
# Generated Cmake Pico project file
cmake_minimum_required(VERSION 3.12)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
# initalize pico_sdk from installed location
# (note this can come from environment, CMake cache etc)
set(PICO_SDK_PATH "/home/pi/pico/pico-sdk")
# Pull in Pico SDK (must be before project)
include(pico_sdk_import.cmake)
project(pico-watch C CXX)
# Initialise the Pico SDK
pico_sdk_init()
# Add OLED library
add_library(Oled
oled/BitBang_I2C.c
oled/BitBang_I2C.h
oled/ss_oled.c
oled/ss_oled.h
)
target_link_libraries(Oled pico_stdlib hardware_i2c)
# Main code
add_executable(pico-watch
pico-watch.cpp
init.cpp
init.hpp
buttons.cpp
buttons.hpp
apps/home_menu.cpp
apps/home_menu.hpp
apps/main_clock.cpp
apps/main_clock.hpp
)
pico_set_program_name(pico-watch "pico-watch")
pico_set_program_version(pico-watch "0.1")
pico_enable_stdio_uart(pico-watch 1)
# Add the standard library to the build
target_link_libraries(pico-watch pico_stdlib)
# Add any user requested libraries
target_link_libraries(pico-watch
Oled
hardware_rtc
# hardware_clocks
)
pico_add_extra_outputs(pico-watch)
|