gbmanager/CMakeLists.txt

46 lines
1.1 KiB
CMake
Raw Normal View History

2022-05-30 14:10:48 +02:00
# Generated Cmake Pico project file
cmake_minimum_required(VERSION 3.13)
set(CMAKE_C_STANDARD 11)
2022-05-31 09:47:29 +02:00
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-volatile")
2022-05-30 14:10:48 +02:00
# Initialise pico_sdk from installed location
# (note this can come from environment, CMake cache etc)
set(PICO_SDK_PATH "/usr/share/pico-sdk")
# Pull in Raspberry Pi Pico SDK (must be before project)
include(pico_sdk_import.cmake)
project(gbmanager C CXX ASM)
# Initialise the Raspberry Pi Pico SDK
pico_sdk_init()
# Add executable. Default name is the project name, version 0.1
2022-05-31 09:47:29 +02:00
add_executable(gbmanager gbmanager.cpp lcd.cpp ds18b20.cpp)
2022-05-30 14:10:48 +02:00
pico_set_program_name(gbmanager "gbmanager")
pico_set_program_version(gbmanager "0.1")
pico_enable_stdio_uart(gbmanager 1)
pico_enable_stdio_usb(gbmanager 0)
2022-05-31 09:47:29 +02:00
pico_generate_pio_header(gbmanager ${CMAKE_CURRENT_LIST_DIR}/ds18b20.pio)
2022-05-30 14:10:48 +02:00
# Add the standard library to the build
target_link_libraries(gbmanager pico_stdlib)
# Add any user requested libraries
2022-05-30 16:09:23 +02:00
target_link_libraries(gbmanager
hardware_i2c
2022-05-31 09:47:29 +02:00
hardware_gpio
hardware_pio
2022-05-30 16:09:23 +02:00
)
2022-05-30 14:10:48 +02:00
pico_add_extra_outputs(gbmanager)