pico-examples
pico-examples copied to clipboard
Update gitignore to ignore CMake generated files
Don't these normally end up being created inside the build
folder anyway?
I had them cluttering up the repo outside build, so just dropped in my CMake gitignore to fix it.
@lurch is correct. It looks like you have run cmake in the source folder. It's usual to do this...
cd pico-examples mkdir build cd build cmake .. make -j8
We already ignore the build folder.
@protik09 See also https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf
Closing this as it's not required