-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
42 lines (33 loc) · 1.02 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
cmake_minimum_required(VERSION 3.13)
include(pico_sdk_import.cmake)
project(pico_msc C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
pico_sdk_init()
add_executable(${PROJECT_NAME})
target_sources(${PROJECT_NAME} PUBLIC
main.c
msc_disk.c
usb_descriptors.c
)
#pico_enable_stdio_usb(${PROJECT_NAME} 1)
pico_enable_stdio_uart(${PROJECT_NAME} 1)
# Make sure TinyUSB can find tusb_config.h
target_include_directories(${PROJECT_NAME} PUBLIC
${CMAKE_CURRENT_LIST_DIR}
)
# In addition to pico_stdlib required for common PicoSDK functionality, add
# dependency on tinyusb_device for TinyUSB device support and tinyusb_board for
# the additional board support library used by the example
target_link_libraries(${PROJECT_NAME}
pico_stdlib
pico_unique_id
tinyusb_device
tinyusb_board
)
# Uncomment this line to enable fix for Errata RP2040-E5 (the fix requires use
# of GPIO 15)
target_compile_definitions(${PROJECT_NAME} PUBLIC
PICO_RP2040_USB_DEVICE_ENUMERATION_FIX=1
)
pico_add_extra_outputs(${PROJECT_NAME})