mirror of
https://github.com/JasonYANG170/logicanalyzer.git
synced 2024-11-23 12:06:27 +00:00
52 lines
1.3 KiB
CMake
52 lines
1.3 KiB
CMake
# Generated Cmake Pico project file
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
# Initialise pico_sdk from installed location
|
|
# (note this can come from environment, CMake cache etc)
|
|
set(PICO_SDK_PATH "F:/PicoSDK/Pico/pico-sdk")
|
|
|
|
# Pull in Raspberry Pi Pico SDK (must be before project)
|
|
include(pico_sdk_import.cmake)
|
|
|
|
project(LogicAnalyzer C CXX ASM)
|
|
|
|
# Initialise the Raspberry Pi Pico SDK
|
|
pico_sdk_init()
|
|
|
|
# Add executable. Default name is the project name, version 0.1
|
|
|
|
add_executable(LogicAnalyzer LogicAnalyzer.c )
|
|
|
|
# Create C header file with the name <pio program>.pio.h
|
|
pico_generate_pio_header(${PROJECT_NAME}
|
|
${CMAKE_CURRENT_LIST_DIR}/LogicAnalyzer.pio
|
|
)
|
|
|
|
pico_set_program_name(LogicAnalyzer "LogicAnalyzer")
|
|
pico_set_program_version(LogicAnalyzer "0.1")
|
|
|
|
pico_enable_stdio_uart(LogicAnalyzer 0)
|
|
pico_enable_stdio_usb(LogicAnalyzer 1)
|
|
|
|
# Add the standard library to the build
|
|
target_link_libraries(LogicAnalyzer pico_stdlib)
|
|
|
|
# Add any user requested libraries
|
|
target_link_libraries(LogicAnalyzer
|
|
pico_stdlib
|
|
hardware_dma
|
|
hardware_pio
|
|
hardware_clocks
|
|
pico_multicore
|
|
pico_base_headers
|
|
hardware_interp
|
|
hardware_divider
|
|
)
|
|
|
|
pico_add_extra_outputs(LogicAnalyzer)
|
|
|