diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2019-03-19 11:59:52 -0600 |
---|---|---|
committer | Scott Rifenbark <srifenbark@gmail.com> | 2019-03-26 13:00:16 -0700 |
commit | 16829a33f77f9d9eda435f5f1c36f36bc33fb267 (patch) | |
tree | dd1f36dc54d7d4d18241f8cf051f7ac639b1f4f5 /docs/dev_guide/2_project_architecture.md | |
parent | a6daa45c47f553b9ff6a1120f48a322f4e834363 (diff) |
cmake-apps-module: New file names.
Created some new file names based on some re-writing.
Also, updated the devguides-book.yml file to reflect the
state of things.
Change-Id: I6a9a91fe9c2f271493404ab7d63b6d6a8faf586e
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Diffstat (limited to 'docs/dev_guide/2_project_architecture.md')
-rw-r--r-- | docs/dev_guide/2_project_architecture.md | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/docs/dev_guide/2_project_architecture.md b/docs/dev_guide/2_project_architecture.md deleted file mode 100644 index 9e5503f..0000000 --- a/docs/dev_guide/2_project_architecture.md +++ /dev/null @@ -1,50 +0,0 @@ -# Project architecture - -A typical project architecture would be : - -```tree -<project-root-path> -│ -├── autobuild/ -│ ├── agl -│ │ └── autobuild -│ ├── linux -│ │ └── autobuild -│ └── windows -│ └── autobuild -├── conf.d/ -│ ├── packaging/ -│ │ ├── rpm -│ │ │ └── package.spec -│ │ └── deb -│ │ ├── package.dsc -│ │ ├── debian.package.install -│ │ ├── debian.changelog -│ │ ├── debian.compat -│ │ ├── debian.control -│ │ └── debian.rules -│ ├── cmake -│ │ ├── 00-debian-osconfig.cmake -│ │ ├── 00-suse-osconfig.cmake -│ │ ├── 01-default-osconfig.cmake -│ │ └── config.cmake -│ └── wgt -│ ├── icon.png -│ └── config.xml.in -├── <target> -│ └── <files> -├── <target> -│ └── <file> -└── <target> - └── <files> -``` - -| # | Parent | Description | -| - | -------| ----------- | -| \<root-path\> | - | Path to your project. Hold master CMakeLists.txt and general files of your projects. | -| 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, package an AGL app project | -| cmake | conf.d | Contains at least config.cmake file modified from the sample provided in app-templates submodule. | -| packaging | conf.d | Contains output files used to build packages. | -| wgt | conf.d | Contains config.xml.in, and optionnaly test-config.xml.in template files modified from the sample provided in cmake module for the needs of project (See config.xml.in.sample and test-config.xml.in.sample file for more details). | -| \<target\> | \<root-path\> | A target to build, typically library, executable, etc. | |