Multi-target example can be found in examples/multi-target.
.
├── assets
├── build
├── components
├── docs
├── examples
├── external
├── include
├── ports
├── projects
├── src
├── tests
└── tools
A directory for build results, containing all object files.
It should not be considered part of the project source. It will be removed on
clean
.
Project documentation, possibly auto-generated.
External dependencies including all the third party libraries.
This directory may be used for git submodule
. Every submodule sources should
not be modified, keeping it as same as their upstream source. Modification to
the submodule should be made in a port layer.
The vendor provided SDK may also be here.
Public headers.
Source files of the project with subdirectories if needed.
Private headers may also be here.
It should not contain any submodules, but application related code only.