diff options
author | Brad King <brad.king@kitware.com> | 2015-06-08 19:36:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-06-08 19:45:59 (GMT) |
commit | 8c64c4783dde25d84b1549945b95d192c1b7fd68 (patch) | |
tree | 0dacd8cfd71a1e08280c89fe963851d8de3b3b98 /Help/variable/CMAKE_FIND_APPBUNDLE.rst | |
parent | 25b4483ef8d6f6f074f05cf99e0282abf22d8939 (diff) | |
download | CMake-8c64c4783dde25d84b1549945b95d192c1b7fd68.zip CMake-8c64c4783dde25d84b1549945b95d192c1b7fd68.tar.gz CMake-8c64c4783dde25d84b1549945b95d192c1b7fd68.tar.bz2 |
Help: Document CMAKE_FIND_APPBUNDLE and CMAKE_FIND_FRAMEWORK
Add dedicated documents for these and link to them instead of
duplicating their documentation in every find command.
Diffstat (limited to 'Help/variable/CMAKE_FIND_APPBUNDLE.rst')
-rw-r--r-- | Help/variable/CMAKE_FIND_APPBUNDLE.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_FIND_APPBUNDLE.rst b/Help/variable/CMAKE_FIND_APPBUNDLE.rst new file mode 100644 index 0000000..e0727b5 --- /dev/null +++ b/Help/variable/CMAKE_FIND_APPBUNDLE.rst @@ -0,0 +1,22 @@ +CMAKE_FIND_APPBUNDLE +-------------------- + +This variable affects how ``find_*`` commands choose between +OS X Application Bundles and unix-style package components. + +On Darwin or systems supporting OS X Application Bundles, the +``CMAKE_FIND_APPBUNDLE`` variable can be set to empty or +one of the following: + +``FIRST`` + Try to find application bundles before standard programs. + This is the default on Darwin. + +``LAST`` + Try to find application bundles after standard programs. + +``ONLY`` + Only try to find application bundles. + +``NEVER`` + Never try to find application bundles. |