Hey,
Thanks for the pointer, I stumbled across that section not too long after my original post, I'm unfortunately running into problems with those commands as well.
It seems like 'nmake' isn't installed, as I'm not able to access it via CMD, Powershell, or MinGW. Frustratingly it seems like something that should be distributed with the OS, and I can't find a suitable download for it.
I read that a suitable alternative could also be using MinGW Makefiles as the generator, but I'm running into errors with that as well...
Thanks for the pointer, I stumbled across that section not too long after my original post, I'm unfortunately running into problems with those commands as well.
Code:
$ cmake -G "NMake Makefiles" ..Using PICO_SDK_PATH from environment ('C:\Program Files\Raspberry Pi\Pico SDK v1.5.1\pico-sdk')PICO_SDK_PATH is C:/Program Files/Raspberry Pi/Pico SDK v1.5.1/pico-sdkDefaulting PICO_PLATFORM to rp2040 since not specified.Defaulting PICO platform compiler to pico_arm_gcc since not specified.-- Defaulting build type to 'Release' since not specified.PICO compiler is pico_arm_gccCMake Error at CMakeLists.txt:3 (project): Running 'nmake' '-?' failed with: no such file or directory-- Configuring incomplete, errors occurred!
I read that a suitable alternative could also be using MinGW Makefiles as the generator, but I'm running into errors with that as well...
Code:
$ cmake -G "MinGW Makefiles" ..Using PICO_SDK_PATH from environment ('C:\Program Files\Raspberry Pi\Pico SDK v1.5.1\pico-sdk')PICO_SDK_PATH is C:/Program Files/Raspberry Pi/Pico SDK v1.5.1/pico-sdkDefaulting PICO_PLATFORM to rp2040 since not specified.Defaulting PICO platform compiler to pico_arm_gcc since not specified.-- Defaulting build type to 'Release' since not specified.PICO compiler is pico_arm_gccCMake Error: CMake was unable to find a build program corresponding to "MinGW Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool.-- Configuring incomplete, errors occurred!
Statistics: Posted by TomboBlombo — Tue Jan 23, 2024 3:50 am