diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2019-06-10 18:47:18 -0500 |
---|---|---|
committer | Scott Rifenbark <srifenbark@gmail.com> | 2019-06-11 12:58:37 +0000 |
commit | 9c48640ffed0da3382686e9399792acc020b678f (patch) | |
tree | 1c46d10d20295a78fb5f3a2ad635b435f232e887 /docs/dev_guide/project-architecture.md | |
parent | 259e9979fd9cd92ce3dc52748659af71be3b690f (diff) |
CMake Configuring: Minor edits.
* Updated topic title to match the nav panel.
* Replaced "confd" with "conf.d" instances.
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Change-Id: I9e7f084121a35a5a069839e50d0526f97a26283c
Diffstat (limited to 'docs/dev_guide/project-architecture.md')
-rwxr-xr-x | docs/dev_guide/project-architecture.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/dev_guide/project-architecture.md b/docs/dev_guide/project-architecture.md index d36fc76..d341cb8 100755 --- a/docs/dev_guide/project-architecture.md +++ b/docs/dev_guide/project-architecture.md @@ -1,4 +1,4 @@ -# Project architecture +# Project Architecture The following tree structure represents a typical CMake project directory structure: @@ -48,9 +48,9 @@ directory structure: | CMakeLists.txt | The master CMakeLists.txt file. | autobuild/ | *root_path* | Scripts generated from app-templates to build packages the same way for differents platforms. | conf.d/ | *root_path* | Holds needed files to build, install, debug, and package an AGL application project. -| packaging/ | confd/ | Contains output files used to build packages. -| cmake/ | confd/ | Minimally contains the config.cmake file, which is modified from the sample provided in the app-templates submodule. -| wgt/ | confd/ | Contains config.xml.in and optionaly the test-config.xml.in template files that are modified from the sample provided with the CMake module for the needs of the project. For more details, see the config.xml.in.sample and test-config.xml.in.sample files. +| packaging/ | conf.d/ | Contains output files used to build packages. +| cmake/ | conf.d/ | Minimally contains the config.cmake file, which is modified from the sample provided in the app-templates submodule. +| wgt/ | conf.d/ | Contains config.xml.in and optionaly the test-config.xml.in template files that are modified from the sample provided with the CMake module for the needs of the project. For more details, see the config.xml.in.sample and test-config.xml.in.sample files. | *target* | *root_path* | A target to build, which is typically a library or executable. When building projects using CMake, the build process automatically detects |