CMakeLists.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Generated Cmake Pico project file
  2. cmake_minimum_required(VERSION 3.13)
  3. set(CMAKE_C_STANDARD 11)
  4. set(CMAKE_CXX_STANDARD 17)
  5. set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
  6. # Initialise pico_sdk from installed location
  7. # (note this can come from environment, CMake cache etc)
  8. # == DO NOT EDIT THE FOLLOWING LINES for the Raspberry Pi Pico VS Code Extension to work ==
  9. if(WIN32)
  10. set(USERHOME $ENV{USERPROFILE})
  11. else()
  12. set(USERHOME $ENV{HOME})
  13. endif()
  14. set(sdkVersion 2.2.0)
  15. set(toolchainVersion 14_2_Rel1)
  16. set(picotoolVersion 2.2.0)
  17. set(picoVscode ${USERHOME}/.pico-sdk/cmake/pico-vscode.cmake)
  18. if (EXISTS ${picoVscode})
  19. include(${picoVscode})
  20. endif()
  21. # ====================================================================================
  22. set(PICO_BOARD pico2 CACHE STRING "Board type")
  23. # Pull in Raspberry Pi Pico SDK (must be before project)
  24. include(pico_sdk_import.cmake)
  25. project(jpfont_2_lcd C CXX ASM)
  26. # Initialise the Raspberry Pi Pico SDK
  27. pico_sdk_init()
  28. # Add executable. Default name is the project name, version 0.1
  29. add_executable(jpfont_2_lcd
  30. jpfont_2_lcd.cpp
  31. pfnfont.cpp
  32. )
  33. pico_set_program_name(jpfont_2_lcd "jpfont_2_lcd")
  34. pico_set_program_version(jpfont_2_lcd "0.1")
  35. # Modify the below lines to enable/disable output over UART/USB
  36. pico_enable_stdio_uart(jpfont_2_lcd 1)
  37. pico_enable_stdio_usb(jpfont_2_lcd 0)
  38. # Add the standard library to the build
  39. target_link_libraries(jpfont_2_lcd
  40. pico_stdlib)
  41. # Add the standard include files to the build
  42. target_include_directories(jpfont_2_lcd PRIVATE
  43. ${CMAKE_CURRENT_LIST_DIR}
  44. )
  45. # Add any user requested libraries
  46. target_link_libraries(jpfont_2_lcd
  47. hardware_spi
  48. hardware_dma
  49. hardware_timer
  50. )
  51. pico_add_extra_outputs(jpfont_2_lcd)