1CMAKE_FIND_APPBUNDLE 2-------------------- 3 4.. versionadded:: 3.4 5 6This variable affects how ``find_*`` commands choose between 7macOS Application Bundles and unix-style package components. 8 9On Darwin or systems supporting macOS Application Bundles, the 10``CMAKE_FIND_APPBUNDLE`` variable can be set to empty or 11one of the following: 12 13``FIRST`` 14 Try to find application bundles before standard programs. 15 This is the default on Darwin. 16 17``LAST`` 18 Try to find application bundles after standard programs. 19 20``ONLY`` 21 Only try to find application bundles. 22 23``NEVER`` 24 Never try to find application bundles. 25