Separate "include" and "src" folders for application-level code?
Posted
by StackedCrooked
on Stack Overflow
See other posts from Stack Overflow
or by StackedCrooked
Published on 2010-05-27T19:00:44Z
Indexed on
2010/05/27
19:11 UTC
Read the original article
Hit count: 132
c++
|project-management
This questions concerns mostly Unix/Linux style C++ development. I see that many C++ libraries store their header files in a "include" folder and source files in an "src" folder. For the sake of conformance I adopted this in my own code. But it is not clear to me whether this should be done for application code as well. I've seen a few cases where a flat directory structure is used for that. What would be the recommended approach?
© Stack Overflow or respective owner