Hi,
It looks like you have removed the startup file from the project (file containing the entry point and the interrupt vectors), so the binary you build ends up completely empty (as all the functions in the project are deemed unused). Note the zero memory usage on the build screenshot.
In order to get a minimal working project, you would need to have an interrupt vector table, a reset handler invoking your main() function and a linker script placing them to correct locations.
If you are not familiar with the details of the GCC-based project initialization, please consider copying BSP-related files instead of removing them, and then removing the unnecessary files and settings from project in several steps, rechecking that the project still builds between them. This should be easier than re-creating the necessary parts of the program from a completely empty project.