-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
40 lines (28 loc) · 982 Bytes
/
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
cmake_minimum_required(VERSION 3.13)
set(NAME tempus_pico_puzzle)
# Set the following to build for wifi
# set(PICO_BOARD "pico_w")
# set(WIFI_SSID "")
# set(WIFI_PASSWORD "")
# Set the following to override the Clue System host
# set(CLUESYSTEM_HOST "tempus.local")
# initialize the SDK based on PICO_SDK_PATH
# note: this must happen before project()
include(pico_sdk_import.cmake)
project(${NAME} C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
# initialize the Raspberry Pi Pico SDK
pico_sdk_init()
# rest of your project
# Set Ethernet chip
set(WIZNET_CHIP W5100S)
add_subdirectory(lib/tempus_pico_lib)
# Main firmware files
add_subdirectory(src)
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
-Wno-psabi #https://github.com/nlohmann/json/issues/1861
)