How To Use with Qt Creator -------------------------- (1) install what you need: - install cmake and GNU C/C++ compiler for ARM and your PC - compile the SDK - see: pico/pico-sdk/README.md (2) create project folder and setup project: - duplicate and rename folder - put new project side-by-side with "pico-sdk/" $> export PICO_SDK_PATH=../../pico-sdk or hard path to pico-sdk $> cd PROJECT/build-debug $> cmake .. $> cd PROJECT/build-release $> cmake .. NOTE: if something went wrong and had to be corrected: before you resume delete entire contents of the build folders. for problems in Qt Creator delete CMakeLists.txt.user too. (3) setup Qt Creator project and start working: - open project in Qt Creator The import dialog should present the "Imported Kit" preselected => accept - in "Projects" view: - Build & Run > Imported Kit > Build: - select Configuration "Release2" - change key CMAKE_BUILD_TYPE to "Debug" - rename Build configuration to "Debug" - apply configuration changes - select Configuration "Release" - check settings (should be ok) - in "Edit" view: edit CMakeList.txt: - change PROJECTNAME to your project name build switch build style build build for all configurations ...