I noticed that when compiling a project, Pelles C creates some files and folder like project_name.ppx, project_name.tag, output/source_file.obj, etc.
Here's an tree view of my project files:
bin /
build /
src /
| source_file.c
project_name.ppj
And here's how it looks after I compile it:
bin /
build /
output/
| source_file.obj
src /
| source_file.c
project_name.exe
project_name.ppj
project_name.ppx
project_name.tag
Is there anyway to change these generated files locations, including the resulting .exe, to their specific folders? For example:bin /
| project_name.exe
build
| source_file.obj
| project_name.ppx
| project_name.tag
src /
| source_file.c
project_name.ppj
I also don't know if this is a good thing to do, if it isn't what can and should I do? Maybe a command line command?
My plan was to reference the build folder inside a .gitignore file, so I don't need to worry about cleaning everytime.