I am aware that you can use Visual Studio 2019 to manage and compile projects using File > New > Project then select 'Empty Project'. Add your sources to the project then open the Terminal using View > Terminal and enter make, make clean, make debug, etc (If anyone can tell me what make gfx does I am interested).
If this is the way you like to do things you can do this almost exactly the same way using CodeBlocks. CodeBlocks doesn't have a 'Terminal' menu item so you can add it. Select Tools > Configure tools then [Add], Name: Terminal, Executable cmd.exe then [OK].
To use CodeBlocks to manage and compile projects follow the same steps as with VS. File > New > Project then select 'Empty Project'. Add your sources to the project then open the Terminal using Tools > Terminal and enter the commands.
My previous post (see Computer & Mobile > C and C++ > CE C Toolchain using an IDE) integrates the CE C Toolchain into CodeBlocks so you don't have to bother using the Terminal or enter commands. To compile just press 'Ctrl-F9' to clean then compile (rebuild) just press 'Ctrl-F11' and to create a debug version just change from 'Release' to 'Debug' and compile or rebuild. Additionally, the build log will appear in the build log tab just as it does in the Terminal.
Hope this clears up any confusion.
If this is the way you like to do things you can do this almost exactly the same way using CodeBlocks. CodeBlocks doesn't have a 'Terminal' menu item so you can add it. Select Tools > Configure tools then [Add], Name: Terminal, Executable cmd.exe then [OK].
To use CodeBlocks to manage and compile projects follow the same steps as with VS. File > New > Project then select 'Empty Project'. Add your sources to the project then open the Terminal using Tools > Terminal and enter the commands.
My previous post (see Computer & Mobile > C and C++ > CE C Toolchain using an IDE) integrates the CE C Toolchain into CodeBlocks so you don't have to bother using the Terminal or enter commands. To compile just press 'Ctrl-F9' to clean then compile (rebuild) just press 'Ctrl-F11' and to create a debug version just change from 'Release' to 'Debug' and compile or rebuild. Additionally, the build log will appear in the build log tab just as it does in the Terminal.
Hope this clears up any confusion.