This commit is contained in:
kleuter
2023-11-01 22:26:17 +01:00
parent 94b1c5907b
commit 860ee1cc77
3387 changed files with 257471 additions and 0 deletions

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/AddFileDependencies.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/AndroidTestUtilities.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/BundleUtilities.cmake

View File

@ -0,0 +1,4 @@
``CMAKE_REQUIRED_DEFINITIONS``
A :ref:`;-list <CMake Language Lists>` of compiler definitions of the form
``-DFOO`` or ``-DFOO=bar``. A definition for the name specified by
``<resultVar>`` will also be added automatically.

View File

@ -0,0 +1,6 @@
``CMAKE_REQUIRED_FLAGS``
String of additional flags to pass to the compiler. The string must be
space-delimited--a :ref:`;-list <CMake Language Lists>` will not work.
The contents of :variable:`CMAKE_<LANG>_FLAGS <CMAKE_<LANG>_FLAGS>` and
its associated configuration-specific variable are automatically added
to the compiler command before the contents of ``CMAKE_REQUIRED_FLAGS``.

View File

@ -0,0 +1,4 @@
``CMAKE_REQUIRED_INCLUDES``
A :ref:`;-list <CMake Language Lists>` of header search paths to pass to
the compiler. These will be the only header search paths used--the contents
of the :prop_dir:`INCLUDE_DIRECTORIES` directory property will be ignored.

View File

@ -0,0 +1,5 @@
``CMAKE_REQUIRED_LIBRARIES``
A :ref:`;-list <CMake Language Lists>` of libraries to add to the link
command. These can be the name of system libraries or they can be
:ref:`Imported Targets <Imported Targets>` (see :command:`try_compile` for
further details).

View File

@ -0,0 +1,5 @@
``CMAKE_REQUIRED_LINK_OPTIONS``
.. versionadded:: 3.14
A :ref:`;-list <CMake Language Lists>` of options to add to the link
command (see :command:`try_compile` for further details).

View File

@ -0,0 +1,5 @@
``CMAKE_REQUIRED_QUIET``
.. versionadded:: 3.1
If this variable evaluates to a boolean true value, all status messages
associated with the check will be suppressed.

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeAddFortranSubdirectory.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeBackwardCompatibilityCXX.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeDependentOption.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeDetermineVSServicePack.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeExpandImportedTargets.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeFindDependencyMacro.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeFindFrameworks.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeFindPackageMode.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeForceCompiler.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeGraphVizOptions.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakePackageConfigHelpers.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeParseArguments.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakePrintHelpers.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakePrintSystemInformation.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakePushCheckState.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CMakeVerifyManifest.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CPack.cmake

View File

@ -0,0 +1,6 @@
CPackArchive
------------
.. versionadded:: 3.9
The documentation for the CPack Archive generator has moved here: :cpack_gen:`CPack Archive Generator`

View File

@ -0,0 +1,4 @@
CPackBundle
-----------
The documentation for the CPack Bundle generator has moved here: :cpack_gen:`CPack Bundle Generator`

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CPackComponent.cmake

View File

@ -0,0 +1,4 @@
CPackCygwin
-----------
The documentation for the CPack Cygwin generator has moved here: :cpack_gen:`CPack Cygwin Generator`

View File

@ -0,0 +1,4 @@
CPackDMG
--------
The documentation for the CPack DragNDrop generator has moved here: :cpack_gen:`CPack DragNDrop Generator`

View File

@ -0,0 +1,4 @@
CPackDeb
--------
The documentation for the CPack DEB generator has moved here: :cpack_gen:`CPack DEB Generator`

View File

@ -0,0 +1,6 @@
CPackFreeBSD
------------
.. versionadded:: 3.10
The documentation for the CPack FreeBSD generator has moved here: :cpack_gen:`CPack FreeBSD Generator`

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CPackIFW.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CPackIFWConfigureFile.cmake

View File

@ -0,0 +1,4 @@
CPackNSIS
---------
The documentation for the CPack NSIS generator has moved here: :cpack_gen:`CPack NSIS Generator`

View File

@ -0,0 +1,6 @@
CPackNuGet
----------
.. versionadded:: 3.12
The documentation for the CPack NuGet generator has moved here: :cpack_gen:`CPack NuGet Generator`

View File

@ -0,0 +1,6 @@
CPackProductBuild
-----------------
.. versionadded:: 3.7
The documentation for the CPack productbuild generator has moved here: :cpack_gen:`CPack productbuild Generator`

View File

@ -0,0 +1,4 @@
CPackRPM
--------
The documentation for the CPack RPM generator has moved here: :cpack_gen:`CPack RPM Generator`

View File

@ -0,0 +1,5 @@
CPackWIX
--------
The documentation for the CPack WIX generator has moved here:
:cpack_gen:`CPack WIX Generator`

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CSharpUtilities.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CTest.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CTestCoverageCollectGCOV.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CTestScriptMode.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CTestUseLaunchers.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCCompilerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCSourceCompiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCSourceRuns.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCXXCompilerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCXXSourceCompiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCXXSourceRuns.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCXXSymbolExists.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckCompilerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckFortranCompilerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckFortranFunctionExists.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckFortranSourceCompiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckFortranSourceRuns.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckFunctionExists.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckIPOSupported.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckIncludeFile.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckIncludeFileCXX.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckIncludeFiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckLanguage.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckLibraryExists.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckLinkerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckOBJCCompilerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckOBJCSourceCompiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckOBJCSourceRuns.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckOBJCXXCompilerFlag.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckOBJCXXSourceCompiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckOBJCXXSourceRuns.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckPIESupported.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckPrototypeDefinition.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckSourceCompiles.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckSourceRuns.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckStructHasMember.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckSymbolExists.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckTypeSize.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/CheckVariableExists.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/Dart.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/DeployQt4.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/Documentation.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/ExternalData.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/ExternalProject.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FeatureSummary.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FetchContent.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindALSA.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindASPELL.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindAVIFile.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindArmadillo.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindBISON.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindBLAS.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindBZip2.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindBacktrace.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindBoost.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindBullet.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindCABLE.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindCUDA.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindCUDAToolkit.cmake

View File

@ -0,0 +1 @@
.. cmake-module:: ../../Modules/FindCURL.cmake

Some files were not shown because too many files have changed in this diff Show More