I wanted to play around with my pico. I downloaded the examples from official github, installed an sdk and went along with the documentation. The problem I have is when I'm creating build files. While the cmake
command is creating a lot of files, none of them are a Makefile
, making the use of next command (nmake
) impossible.
The strucutre I have after using cmake
in build directory is as follows:
├── build
│ ├── blink
│ │ ├── CMakeFiles
│ │ | ├── ELF2UF2Build.dir
│ │ | | ├── Labels.json
│ │ | | ├── Labels.txt
│ │ | ├── generate.stamp
│ │ | ├── generate.stamp.depend
│ | ├── elf2uf2
│ │ | ├── src
│ │ | | ├── Debug (empty directory)
│ │ | | ├── MinSizeRel (empty directory)
│ │ | | ├── Release (empty directory)
│ │ | | ├── RelWithDebInfo (empty directory)
│ │ | | ├── ELF2UF2Build-source_dirinfo.txt
│ │ | ├── tmp
│ │ | | ├── ELF2UF2Build-cfgcmd.txt
│ │ | | ├── ELF2UF2Build-mkdirs.cmake
│ | ├── blink.vcxproj
│ | ├── blink.vcxproj.filters
│ | ├── cmake_install.cmake
│ | ├── ELF2UF2Build.vcxproj
│ | ├── ELF2UF2Build.vcxproj.filters
│ ├── other_examples...
...
Any help would be greatly appreciated, I've been going around in circles for some time. Im working on Windows 10, cmake, make are installed with cholocatey.