What is the best or most commonly used practice for the folder structure of a project:
project |-- src |-- include
or
project |--src
|--include
i.e. have the include folder within the source folder or both next to each other?
edit:
This wuestion is similar: Separate "include" and "src" folders for application-level code? , but the answers are not really satisfying.