diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2019-04-08 14:26:51 -0700 |
---|---|---|
committer | Scott Rifenbark <srifenbark@gmail.com> | 2019-04-08 14:26:51 -0700 |
commit | 7061edf1849de1bb1730df92d23aa52a6793a609 (patch) | |
tree | 5e3414e134d65d6dbc15cf44c1811a2b464352f3 /docs/dev_guide/installing-cmake.md | |
parent | 4bbfea69dd78079ec3379268a12a552930d4314f (diff) |
CMake: Complete re-write of the CMake topic.guppy_7.0.2guppy/7.0.27.0.2
Change-Id: I97c3a450401b87b8419ff00615588c261e6afc25
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Diffstat (limited to 'docs/dev_guide/installing-cmake.md')
-rwxr-xr-x | docs/dev_guide/installing-cmake.md | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/docs/dev_guide/installing-cmake.md b/docs/dev_guide/installing-cmake.md new file mode 100755 index 0000000..d1edcb6 --- /dev/null +++ b/docs/dev_guide/installing-cmake.md @@ -0,0 +1,50 @@ +# Installing CMake Templates + +You can install CMake templates on your native Linux system. + +In order to use the templates, you need to install them as +a CMake module. +On your native Linux system, use your distribution's package manager. +See the +"[Prerequisites](../../2-download-packages.html)" +section for how to install packages using your distribution's package +manager. +Be sure to use the following with you install the packages: + +```bash +export DISTRO="xUbuntu_16.10" +export REVISION=Master +``` + +**NOTE:** In order to use the CMake templates, you must be using the +AGL Guppy release. +You cannot use prior releases. + +## Installing on Debian or Ubuntu + +Use the following command to install AGL's CMake Application Module +on a native Debian or Ubuntu system: + +```bash +sudo apt-get install agl-cmake-apps-module-bin +``` + +## Installing on OpenSUSE + +Use the following command to install AGL's CMake Application Module +on a native OpenSUSE system: + +```bash +sudo zypper install agl-cmake-apps-module +``` + +## Installing on Fedora + +Use the following command to install AGL's CMake Application Module +on a native Fedora system: + +```bash +sudo dnf install agl-cmake-apps-module +``` + + |