How do I set up a project in Dev C++ to work with multiple directories so I can segregate the files for the different parts of a program? I figured out how to do it in the IDE, but when I go to the actual folder where everything is at all the files are in one folder. Much Thanks, Jody Bush
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Create the files in the necessary folders, and ad them to the project - simple as that. Remember also to add include paths for any folders containing cross-folder headers.
If all your files are in the same folder that will be because that is where you saved them. I cannot remember with Dev-C++ which I no longer install, but if it is like VC++ logical 'folders' you create in the project manager do not correspond to physical folders on disk.
Clifford
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How do I set up a project in Dev C++ to work with multiple directories so I can segregate the files for the different parts of a program? I figured out how to do it in the IDE, but when I go to the actual folder where everything is at all the files are in one folder. Much Thanks, Jody Bush
Create the files in the necessary folders, and ad them to the project - simple as that. Remember also to add include paths for any folders containing cross-folder headers.
If all your files are in the same folder that will be because that is where you saved them. I cannot remember with Dev-C++ which I no longer install, but if it is like VC++ logical 'folders' you create in the project manager do not correspond to physical folders on disk.
Clifford