cmake_minimum_required(VERSION 3.13) include(pico_sdk_import.cmake) project(Protothreads_test_1_1_1) pico_sdk_init() add_executable(Protothreads_test_1_1_1 Protothreads_test_1_1_1.c) pico_enable_stdio_usb(Protothreads_test_1_1_1 0) pico_enable_stdio_uart(Protothreads_test_1_1_1 1) pico_add_extra_outputs(Protothreads_test_1_1_1) target_link_libraries(Protothreads_test_1_1_1 pico_stdlib pico_bootsel_via_double_reset pico_multicore) add_compile_options(-Ofast)