# Generated Cmake Pico project file cmake_minimum_required(VERSION 3.13) set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-volatile") # 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 VERSION "1.0.0" LANGUAGES C CXX ASM) configure_file(config.h.in ${PROJECT_BINARY_DIR}/config.h) # Initialise the Raspberry Pi Pico SDK pico_sdk_init() # Add executable. Default name is the project name, version 0.1 add_executable(gbmanager gbmanager.cpp lcd.cpp ds18b20.cpp relais.cpp) 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) pico_generate_pio_header(gbmanager ${CMAKE_CURRENT_LIST_DIR}/ds18b20.pio) # Add the standard library to the build target_link_libraries(gbmanager pico_stdlib) # Add any user requested libraries target_link_libraries(gbmanager hardware_i2c hardware_gpio hardware_pio ) pico_add_extra_outputs(gbmanager)