restructured

This commit is contained in:
Martin Brodbeck 2022-05-31 15:13:00 +02:00
parent 2f7d1dd921
commit 91e1a7d424
12 changed files with 33 additions and 28 deletions

View File

@ -1,5 +1,3 @@
# Generated Cmake Pico project file
cmake_minimum_required(VERSION 3.13)
set(CMAKE_C_STANDARD 11)
@ -12,36 +10,12 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-volatile")
set(PICO_SDK_PATH "/usr/share/pico-sdk")
# Pull in Raspberry Pi Pico SDK (must be before project)
include(pico_sdk_import.cmake)
include("cmake/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)
add_subdirectory(src)

31
src/CMakeLists.txt Normal file
View File

@ -0,0 +1,31 @@
configure_file(config.h.in ${PROJECT_BINARY_DIR}/src/config.h)
set(SOURCES
gbmanager.cpp
lcd.cpp
ds18b20.cpp
relais.cpp
)
# Add executable. Default name is the project name, version 0.1
add_executable(gbmanager ${SOURCES})
pico_set_program_name(gbmanager "gbmanager")
pico_set_program_version(gbmanager ${PROJECT_VERSION})
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)

View File