No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # ----------------------------------------------------------------------------
  2. # Copyright (c) 2024 Thomas Buck (thomas@xythobuz.de)
  3. #
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # See <http://www.gnu.org/licenses/>.
  15. # ----------------------------------------------------------------------------
  16. cmake_minimum_required(VERSION 3.5)
  17. # initialize pico-sdk from submodule
  18. include(pico-sdk/pico_sdk_init.cmake)
  19. project(dispensy C CXX)
  20. set(CMAKE_C_STANDARD 11)
  21. set(CMAKE_CXX_STANDARD 17)
  22. set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
  23. # initialize the Raspberry Pi Pico SDK
  24. pico_sdk_init()
  25. add_executable(dispensy)
  26. target_sources(dispensy PUBLIC
  27. ${CMAKE_CURRENT_LIST_DIR}/src/main.c
  28. ${CMAKE_CURRENT_LIST_DIR}/src/console.c
  29. ${CMAKE_CURRENT_LIST_DIR}/src/log.c
  30. ${CMAKE_CURRENT_LIST_DIR}/src/util.c
  31. ${CMAKE_CURRENT_LIST_DIR}/src/usb.c
  32. ${CMAKE_CURRENT_LIST_DIR}/src/usb_cdc.c
  33. ${CMAKE_CURRENT_LIST_DIR}/src/usb_descriptors.c
  34. ${CMAKE_CURRENT_LIST_DIR}/src/buttons.c
  35. ${CMAKE_CURRENT_LIST_DIR}/src/lcd.c
  36. ${CMAKE_CURRENT_LIST_DIR}/src/ring.c
  37. )
  38. target_include_directories(dispensy PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
  39. # enable generous warnings
  40. target_compile_options(dispensy PUBLIC
  41. -Wall
  42. -Wextra
  43. -Werror
  44. -Wshadow
  45. )
  46. # suppress some warnings for borked 3rd party files in Pico SDK
  47. set_source_files_properties(pico-sdk/lib/btstack/src/ble/sm.c PROPERTIES COMPILE_FLAGS -Wno-unused-parameter)
  48. set_source_files_properties(pico-sdk/lib/btstack/src/btstack_hid_parser.c PROPERTIES COMPILE_FLAGS -Wno-maybe-uninitialized)
  49. set_source_files_properties(pico-sdk/src/rp2_common/pico_cyw43_driver/cyw43_driver.c PROPERTIES COMPILE_FLAGS -Wno-unused-parameter)
  50. set_source_files_properties(pico-sdk/lib/btstack/src/classic/avdtp_util.c PROPERTIES COMPILE_FLAGS -Wno-unused-parameter)
  51. set_source_files_properties(pico-sdk/lib/btstack/src/classic/goep_client.c PROPERTIES COMPILE_FLAGS -Wno-unused-parameter)
  52. set_source_files_properties(pico-sdk/lib/btstack/src/classic/goep_server.c PROPERTIES COMPILE_FLAGS -Wno-unused-parameter)
  53. set_source_files_properties(pico-sdk/src/rp2_common/hardware_flash/flash.c PROPERTIES COMPILE_FLAGS -Wno-shadow)
  54. # pull in common dependencies
  55. target_link_libraries(dispensy
  56. pico_stdlib
  57. pico_unique_id
  58. tinyusb_device
  59. tinyusb_board
  60. hardware_adc
  61. hardware_gpio
  62. hardware_pwm
  63. )
  64. # fix for Errata RP2040-E5 (the fix requires use of GPIO 15)
  65. target_compile_definitions(dispensy PUBLIC PICO_RP2040_USB_DEVICE_ENUMERATION_FIX=1)
  66. pico_add_extra_outputs(dispensy)