Hi, I'm starting to learn how to make NDS homebrew. I've installed the devkitPro toolchains and all of that, but I wanted to know if it is possible to add a feature in Notepad++ that lets you press a button and compile the homebrew. Any ideas?
Um nope as notepad++ is just a better notepadHi, I'm starting to learn how to make NDS homebrew. I've installed the devkitPro toolchains and all of that, but I wanted to know if it is possible to add a feature in Notepad++ that lets you press a button and compile the homebrew. Any ideas?
What about Programmers Notepad?Um nope as notepad++ is just a better notepad
Any recommended IDEs?sounds like you're looking for an IDE not a text editor
IDEs for C are a bit of an awkward area as most C programmers are used to low level operations and just run the compilation commands themselves on terminal or powershell or whateverAny recommended IDEs?
Ok, I would get the one for C/C++ right?IDEs for C are a bit of an awkward area as most C programmers are used to low level operations and just run the compilation commands themselves on terminal or powershell or whatever
try Eclipse
yeah, Eclipse or NetBeans they both support several languages including C/C++I would just install the
Ok, I would get the one for C/C++ right?
Visual Studio Code with the C++ add on is similarly configurable to Eclipse
you get IDE features like autocompletion, but it's still an editor, so you don't have those heavy project files, etc.
I forgot that existed.If you want a simple code editor that lets you compile things straight from the interface, there's always Geany.
you're right. You don't even need an addon. https://code.visualstudio.com/Docs/editor/tasks Configuring it to call make for building is supported out of the box.I don't think the C++ add-on for VSCode lets you compile, only debug
I've decided to go with this. It looks nice and it's easy to use. Thanks.you're right. You don't even need an addon. https://code.visualstudio.com/Docs/editor/tasks Configuring it to call make for building is supported out of the box.