diff options
author | Craig Scott <craig.scott@crascit.com> | 2019-05-27 21:53:04 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-05-27 21:53:43 (GMT) |
commit | 711f1bf1db0bbfb64323f81ee52864560776ebff (patch) | |
tree | 29221e425fd57c08cb6525232b3cca31c8400a19 | |
parent | c0e763d6880e842d8fc874e58c93583e014bd988 (diff) | |
parent | b7b7f1806acf8aabd5cd99e3d08fac15f4f95bdc (diff) | |
download | CMake-711f1bf1db0bbfb64323f81ee52864560776ebff.zip CMake-711f1bf1db0bbfb64323f81ee52864560776ebff.tar.gz CMake-711f1bf1db0bbfb64323f81ee52864560776ebff.tar.bz2 |
Merge topic 'doc-install-export-android-mk'
b7b7f1806a Help: Fix typo in install(EXPORT_ANDROID_MK) example
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3376
-rw-r--r-- | Help/command/install.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/command/install.rst b/Help/command/install.rst index 7571aae..ab6fef6 100644 --- a/Help/command/install.rst +++ b/Help/command/install.rst @@ -660,9 +660,9 @@ and installed by the current project. For example, the code install(TARGETS myexe EXPORT myproj DESTINATION bin) install(EXPORT myproj NAMESPACE mp_ DESTINATION lib/myproj) - install(EXPORT_ANDROID_MK myexp DESTINATION share/ndk-modules) + install(EXPORT_ANDROID_MK myproj DESTINATION share/ndk-modules) -will install the executable myexe to ``<prefix>/bin`` and code to import +will install the executable ``myexe`` to ``<prefix>/bin`` and code to import it in the file ``<prefix>/lib/myproj/myproj.cmake`` and ``<prefix>/share/ndk-modules/Android.mk``. An outside project may load this file with the include command and reference the ``myexe`` |