Server IP : 172.67.216.182 / Your IP : 172.69.176.113 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/cmake-3.22/Help/variable/ |
Upload File : |
CMAKE_FIND_PACKAGE_PREFER_CONFIG --------------------------------- .. versionadded:: 3.15 Tell :command:`find_package` to try "Config" mode before "Module" mode if no mode was specified. The command :command:`find_package` operates without an explicit mode when the reduced signature is used without the ``MODULE`` option. In this case, by default, CMake first tries Module mode by searching for a ``Find<pkg>.cmake`` module. If it fails, CMake then searches for the package using Config mode. Set ``CMAKE_FIND_PACKAGE_PREFER_CONFIG`` to ``TRUE`` to tell :command:`find_package` to first search using Config mode before falling back to Module mode. This variable may be useful when a developer has compiled a custom version of a common library and wishes to link it to a dependent project. If this variable is set to ``TRUE``, it would prevent a dependent project's call to :command:`find_package` from selecting the default library located by the system's ``Find<pkg>.cmake`` module before finding the developer's custom built library. Once this variable is set, it is the responsibility of the exported ``<pkg>Config.cmake`` files to provide the same result variables as the ``Find<pkg>.cmake`` modules so that dependent projects can use them interchangeably.