PATH:
usr
/
share
/
cmake
/
Modules
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying # file Copyright.txt or https://cmake.org/licensing for details. # determine the compiler to use for C programs # NOTE, a generator may set CMAKE_C_COMPILER before # loading this file to force a compiler. # use environment variable CC first if defined by user, next use # the cmake variable CMAKE_GENERATOR_CC which can be defined by a generator # as a default compiler # If the internal cmake variable _CMAKE_TOOLCHAIN_PREFIX is set, this is used # as prefix for the tools (e.g. arm-elf-gcc, arm-elf-ar etc.). This works # currently with the GNU crosscompilers. # # Sets the following variables: # CMAKE_C_COMPILER # CMAKE_AR # CMAKE_RANLIB # CMAKE_COMPILER_IS_GNUCC # # If not already set before, it also sets # _CMAKE_TOOLCHAIN_PREFIX include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake) # Load system-specific compiler preferences for this language. include(Platform/${CMAKE_SYSTEM_NAME}-Determine-C OPTIONAL) include(Platform/${CMAKE_SYSTEM_NAME}-C OPTIONAL) if(NOT CMAKE_C_COMPILER_NAMES) set(CMAKE_C_COMPILER_NAMES cc) endif() if(${CMAKE_GENERATOR} MATCHES "Visual Studio") elseif("${CMAKE_GENERATOR}" MATCHES "Green Hills MULTI") elseif("${CMAKE_GENERATOR}" MATCHES "Xcode") set(CMAKE_C_COMPILER_XCODE_TYPE sourcecode.c.c) _cmake_find_compiler_path(C) else() if(NOT CMAKE_C_COMPILER) set(CMAKE_C_COMPILER_INIT NOTFOUND) # prefer the environment variable CC if(NOT $ENV{CC} STREQUAL "") get_filename_component(CMAKE_C_COMPILER_INIT $ENV{CC} PROGRAM PROGRAM_ARGS CMAKE_C_FLAGS_ENV_INIT) if(CMAKE_C_FLAGS_ENV_INIT) set(CMAKE_C_COMPILER_ARG1 "${CMAKE_C_FLAGS_ENV_INIT}" CACHE STRING "Arguments to C compiler") endif() if(NOT EXISTS ${CMAKE_C_COMPILER_INIT}) message(FATAL_ERROR "Could not find compiler set in environment variable CC:\n$ENV{CC}.") endif() endif() # next try prefer the compiler specified by the generator if(CMAKE_GENERATOR_CC) if(NOT CMAKE_C_COMPILER_INIT) set(CMAKE_C_COMPILER_INIT ${CMAKE_GENERATOR_CC}) endif() endif() # finally list compilers to try if(NOT CMAKE_C_COMPILER_INIT) set(CMAKE_C_COMPILER_LIST ${_CMAKE_TOOLCHAIN_PREFIX}cc ${_CMAKE_TOOLCHAIN_PREFIX}gcc cl bcc xlc icx clang) endif() _cmake_find_compiler(C) else() _cmake_find_compiler_path(C) endif() mark_as_advanced(CMAKE_C_COMPILER) # Each entry in this list is a set of extra flags to try # adding to the compile line to see if it helps produce # a valid identification file. set(CMAKE_C_COMPILER_ID_TEST_FLAGS_FIRST) set(CMAKE_C_COMPILER_ID_TEST_FLAGS # Try compiling to an object file only. "-c" # Try enabling ANSI mode on HP. "-Aa" # Try compiling K&R-compatible code (needed by Bruce C Compiler). "-D__CLASSIC_C__" # ARMClang need target options "--target=arm-arm-none-eabi -mcpu=cortex-m3" # MSVC needs at least one include directory for __has_include to function, # but custom toolchains may run MSVC with no INCLUDE env var and no -I flags. # Also avoid linking so this works with no LIB env var. "-c -I__does_not_exist__" ) endif() if(CMAKE_C_COMPILER_TARGET) set(CMAKE_C_COMPILER_ID_TEST_FLAGS_FIRST "-c --target=${CMAKE_C_COMPILER_TARGET}") endif() # Build a small source file to identify the compiler. if(NOT CMAKE_C_COMPILER_ID_RUN) set(CMAKE_C_COMPILER_ID_RUN 1) # Try to identify the compiler. set(CMAKE_C_COMPILER_ID) set(CMAKE_C_PLATFORM_ID) file(READ ${CMAKE_ROOT}/Modules/CMakePlatformId.h.in CMAKE_C_COMPILER_ID_PLATFORM_CONTENT) # The IAR compiler produces weird output. # See https://gitlab.kitware.com/cmake/cmake/-/issues/10176#note_153591 list(APPEND CMAKE_C_COMPILER_ID_VENDORS IAR) set(CMAKE_C_COMPILER_ID_VENDOR_FLAGS_IAR ) set(CMAKE_C_COMPILER_ID_VENDOR_REGEX_IAR "IAR .+ Compiler") # Match the link line from xcodebuild output of the form # Ld ... # ... # /path/to/cc ...CompilerIdC/... # to extract the compiler front-end for the language. set(CMAKE_C_COMPILER_ID_TOOL_MATCH_REGEX "\nLd[^\n]*(\n[ \t]+[^\n]*)*\n[ \t]+([^ \t\r\n]+)[^\r\n]*-o[^\r\n]*CompilerIdC/(\\./)?(CompilerIdC.(framework|xctest|build/[^ \t\r\n]+)/)?CompilerIdC[ \t\n\\\"]") set(CMAKE_C_COMPILER_ID_TOOL_MATCH_INDEX 2) include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake) CMAKE_DETERMINE_COMPILER_ID(C CFLAGS CMakeCCompilerId.c) _cmake_find_compiler_sysroot(C) # Set old compiler and platform id variables. if(CMAKE_C_COMPILER_ID STREQUAL "GNU") set(CMAKE_COMPILER_IS_GNUCC 1) endif() else() if(NOT DEFINED CMAKE_C_COMPILER_FRONTEND_VARIANT) # Some toolchain files set our internal CMAKE_C_COMPILER_ID_RUN # variable but are not aware of CMAKE_C_COMPILER_FRONTEND_VARIANT. # They pre-date our support for the GNU-like variant targeting the # MSVC ABI so we do not consider that here. if(CMAKE_C_COMPILER_ID STREQUAL "Clang" OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xIntelLLVM") if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC") set(CMAKE_C_COMPILER_FRONTEND_VARIANT "MSVC") else() set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") endif() else() set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") endif() endif() endif() if (NOT _CMAKE_TOOLCHAIN_LOCATION) get_filename_component(_CMAKE_TOOLCHAIN_LOCATION "${CMAKE_C_COMPILER}" PATH) endif () # If we have a gcc cross compiler, they have usually some prefix, like # e.g. powerpc-linux-gcc, arm-elf-gcc or i586-mingw32msvc-gcc, optionally # with a 3-component version number at the end (e.g. arm-eabi-gcc-4.5.2). # The other tools of the toolchain usually have the same prefix # NAME_WE cannot be used since then this test will fail for names like # "arm-unknown-nto-qnx6.3.0-gcc.exe", where BASENAME would be # "arm-unknown-nto-qnx6" instead of the correct "arm-unknown-nto-qnx6.3.0-" if (NOT _CMAKE_TOOLCHAIN_PREFIX) if(CMAKE_C_COMPILER_ID MATCHES "GNU|Clang|QCC|LCC") get_filename_component(COMPILER_BASENAME "${CMAKE_C_COMPILER}" NAME) if (COMPILER_BASENAME MATCHES "^(.+-)?(clang|g?cc)(-cl)?(-[0-9]+(\\.[0-9]+)*)?(-[^.]+)?(\\.exe)?$") set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1}) set(_CMAKE_TOOLCHAIN_SUFFIX ${CMAKE_MATCH_4}) set(_CMAKE_COMPILER_SUFFIX ${CMAKE_MATCH_6}) elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") if(CMAKE_C_COMPILER_TARGET) set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_C_COMPILER_TARGET}-) endif() elseif(COMPILER_BASENAME MATCHES "qcc(\\.exe)?$") if(CMAKE_C_COMPILER_TARGET MATCHES "gcc_nto([a-z0-9]+_[0-9]+|[^_le]+)(le)?") set(_CMAKE_TOOLCHAIN_PREFIX nto${CMAKE_MATCH_1}-) endif() endif () # if "llvm-" is part of the prefix, remove it, since llvm doesn't have its own binutils # but uses the regular ar, objcopy, etc. (instead of llvm-objcopy etc.) if ("${_CMAKE_TOOLCHAIN_PREFIX}" MATCHES "(.+-)?llvm-$") set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1}) endif () elseif(CMAKE_C_COMPILER_ID MATCHES "TI") # TI compilers are named e.g. cl6x, cl470 or armcl.exe get_filename_component(COMPILER_BASENAME "${CMAKE_C_COMPILER}" NAME) if (COMPILER_BASENAME MATCHES "^(.+)?cl([^.]+)?(\\.exe)?$") set(_CMAKE_TOOLCHAIN_PREFIX "${CMAKE_MATCH_1}") set(_CMAKE_TOOLCHAIN_SUFFIX "${CMAKE_MATCH_2}") endif () endif() endif () set(_CMAKE_PROCESSING_LANGUAGE "C") include(CMakeFindBinUtils) include(Compiler/${CMAKE_C_COMPILER_ID}-FindBinUtils OPTIONAL) unset(_CMAKE_PROCESSING_LANGUAGE) if(CMAKE_C_COMPILER_SYSROOT) string(CONCAT _SET_CMAKE_C_COMPILER_SYSROOT "set(CMAKE_C_COMPILER_SYSROOT \"${CMAKE_C_COMPILER_SYSROOT}\")\n" "set(CMAKE_COMPILER_SYSROOT \"${CMAKE_C_COMPILER_SYSROOT}\")") else() set(_SET_CMAKE_C_COMPILER_SYSROOT "") endif() if(CMAKE_C_COMPILER_ARCHITECTURE_ID) set(_SET_CMAKE_C_COMPILER_ARCHITECTURE_ID "set(CMAKE_C_COMPILER_ARCHITECTURE_ID ${CMAKE_C_COMPILER_ARCHITECTURE_ID})") else() set(_SET_CMAKE_C_COMPILER_ARCHITECTURE_ID "") endif() if(MSVC_C_ARCHITECTURE_ID) set(SET_MSVC_C_ARCHITECTURE_ID "set(MSVC_C_ARCHITECTURE_ID ${MSVC_C_ARCHITECTURE_ID})") endif() if(CMAKE_C_XCODE_ARCHS) set(SET_CMAKE_XCODE_ARCHS "set(CMAKE_XCODE_ARCHS \"${CMAKE_C_XCODE_ARCHS}\")") endif() # configure variables set in this file for fast reload later on configure_file(${CMAKE_ROOT}/Modules/CMakeCCompiler.cmake.in ${CMAKE_PLATFORM_INFO_DIR}/CMakeCCompiler.cmake @ONLY ) set(CMAKE_C_COMPILER_ENV_VAR "CC")
[+]
..
[+]
AndroidTestUtilities
[+]
CMakeAddFortranSubdirectory
[+]
CheckIPOSupported
[+]
Compiler
[+]
CompilerId
[+]
FetchContent
[+]
FindCUDA
[+]
FindMPI
[+]
FindPython
[+]
FortranCInterface
[+]
IntelVSImplicitPath
[+]
Internal
[+]
Platform
[+]
UseJava
[+]
UseSWIG
[-] CMakeDetermineFortranCompiler.cmake
[edit]
[-] AddFileDependencies.cmake
[edit]
[-] CMakeDetermineISPCCompiler.cmake
[edit]
[-] AndroidTestUtilities.cmake
[edit]
[-] CMakeCheckCompilerFlagCommonPatterns.cmake
[edit]
[-] BasicConfigVersion-AnyNewerVersion.cmake.in
[edit]
[-] CMakeCommonLanguageInclude.cmake
[edit]
[-] BasicConfigVersion-ExactVersion.cmake.in
[edit]
[-] CMakeDetermineCSharpCompiler.cmake
[edit]
[-] CPack.cmake
[edit]
[-] BasicConfigVersion-SameMajorVersion.cmake.in
[edit]
[-] CMakeCXXInformation.cmake
[edit]
[-] CMakeFindXCode.cmake
[edit]
[-] BasicConfigVersion-SameMinorVersion.cmake.in
[edit]
[-] CMakeDetermineJavaCompiler.cmake
[edit]
[-] BundleUtilities.cmake
[edit]
[-] CMakePlatformId.h.in
[edit]
[-] CMake.cmake
[edit]
[-] CMakeCompilerABI.h
[edit]
[-] CTest.cmake
[edit]
[-] CMakeASM-ATTInformation.cmake
[edit]
[-] CMakeDetermineOBJCCompiler.cmake
[edit]
[-] CMakeASMCompiler.cmake.in
[edit]
[-] CMakeDetermineOBJCXXCompiler.cmake
[edit]
[-] CMakeASMInformation.cmake
[edit]
[-] CMakeCompilerIdDetection.cmake
[edit]
[-] CMakeASM_MASMInformation.cmake
[edit]
[-] CMakeConfigurableFile.in
[edit]
[-] CMakeASM_NASMInformation.cmake
[edit]
[-] CMakeDependentOption.cmake
[edit]
[-] CMakeAddFortranSubdirectory.cmake
[edit]
[-] CMakeDetermineRCCompiler.cmake
[edit]
[-] CMakeAddNewLanguage.txt
[edit]
[-] CMakeDetermineASM-ATTCompiler.cmake
[edit]
[-] CMakeBackwardCompatibilityC.cmake
[edit]
[-] CMakeDetermineCompileFeatures.cmake
[edit]
[-] CMakeBackwardCompatibilityCXX.cmake
[edit]
[-] CMakeDetermineSwiftCompiler.cmake
[edit]
[-] CMakeBorlandFindMake.cmake
[edit]
[-] CMakeDetermineVSServicePack.cmake
[edit]
[-] CMakeBuildSettings.cmake.in
[edit]
[-] CMakeExpandImportedTargets.cmake
[edit]
[-] CMakeCCompiler.cmake.in
[edit]
[-] CMakeFindWMake.cmake
[edit]
[-] CMakeCCompilerABI.c
[edit]
[-] CMakeExportBuildSettings.cmake
[edit]
[-] CMakeCCompilerId.c.in
[edit]
[-] CMakeFindCodeBlocks.cmake
[edit]
[-] CMakeCInformation.cmake
[edit]
[-] CMakeDetermineCompiler.cmake
[edit]
[-] CMakeCSharpCompiler.cmake.in
[edit]
[-] CMakeFindBinUtils.cmake
[edit]
[-] CMakeCSharpCompilerId.cs.in
[edit]
[-] CMakeDetermineCompilerABI.cmake
[edit]
[-] CMakeCSharpInformation.cmake
[edit]
[-] CMakeFindFrameworks.cmake
[edit]
[-] CMakeCUDACompiler.cmake.in
[edit]
[-] CMakeFindDependencyMacro.cmake
[edit]
[-] CMakeCUDACompilerABI.cu
[edit]
[-] CMakeFindEclipseCDT4.cmake
[edit]
[-] CMakeCUDACompilerId.cu.in
[edit]
[-] CMakeFindJavaCommon.cmake
[edit]
[-] CMakeCUDAInformation.cmake
[edit]
[-] CMakeFindKate.cmake
[edit]
[-] CMakeCXXCompiler.cmake.in
[edit]
[-] CMakeFindSublimeText2.cmake
[edit]
[-] CMakeCXXCompilerABI.cpp
[edit]
[-] CMakeFindPackageMode.cmake
[edit]
[-] CMakeCXXCompilerId.cpp.in
[edit]
[-] CMakeDetermineASMCompiler.cmake
[edit]
[-] CMakeDetermineCUDACompiler.cmake
[edit]
[-] CMakeDetermineASM_MASMCompiler.cmake
[edit]
[-] CMakeDetermineCXXCompiler.cmake
[edit]
[-] CMakeDetermineASM_NASMCompiler.cmake
[edit]
[-] CMakeDetermineCompilerId.cmake
[edit]
[-] CMakeDetermineCCompiler.cmake
[edit]
[-] CMakeFortranCompiler.cmake.in
[edit]
[-] CMakeDetermineSystem.cmake
[edit]
[-] CMakeSystem.cmake.in
[edit]
[-] CMakeSystemSpecificInitialize.cmake
[edit]
[-] CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake
[edit]
[-] CMakeForceCompiler.cmake
[edit]
[-] CMakeTestJavaCompiler.cmake
[edit]
[-] CMakeFortranCompilerABI.F
[edit]
[-] CMakeTestOBJCCompiler.cmake
[edit]
[-] CMakeFortranCompilerId.F.in
[edit]
[-] CMakeTestASM-ATTCompiler.cmake
[edit]
[-] CMakeFortranInformation.cmake
[edit]
[-] CMakeTestOBJCXXCompiler.cmake
[edit]
[-] CMakeGenericSystem.cmake
[edit]
[-] CMakeTestRCCompiler.cmake
[edit]
[-] CMakeGraphVizOptions.cmake
[edit]
[-] CMakeTestASMCompiler.cmake
[edit]
[-] CMakeIOSInstallCombined.cmake
[edit]
[-] CMakeTestSwiftCompiler.cmake
[edit]
[-] CMakeISPCCompiler.cmake.in
[edit]
[-] CMakeUnixFindMake.cmake
[edit]
[-] CMakeISPCCompilerABI.ispc
[edit]
[-] CMakeVerifyManifest.cmake
[edit]
[-] CMakeISPCCompilerId.ispc.in
[edit]
[-] CPackComponent.cmake
[edit]
[-] CMakeISPCInformation.cmake
[edit]
[-] CMakeTestASM_MASMCompiler.cmake
[edit]
[-] CMakeImportBuildSettings.cmake
[edit]
[-] CMakeTestASM_NASMCompiler.cmake
[edit]
[-] CMakeInitializeConfigs.cmake
[edit]
[-] CPackIFW.cmake
[edit]
[-] CMakeJOMFindMake.cmake
[edit]
[-] CPackIFWConfigureFile.cmake
[edit]
[-] CMakeJavaCompiler.cmake.in
[edit]
[-] CSharpUtilities.cmake
[edit]
[-] CMakeJavaInformation.cmake
[edit]
[-] CMakeTestCCompiler.cmake
[edit]
[-] CMakeLanguageInformation.cmake
[edit]
[-] CTestCoverageCollectGCOV.cmake
[edit]
[-] CMakeMSYSFindMake.cmake
[edit]
[-] CTestScriptMode.cmake
[edit]
[-] CMakeMinGWFindMake.cmake
[edit]
[-] CTestTargets.cmake
[edit]
[-] CMakeNMakeFindMake.cmake
[edit]
[-] CTestUseLaunchers.cmake
[edit]
[-] CMakeNinjaFindMake.cmake
[edit]
[-] CheckCCompilerFlag.cmake
[edit]
[-] CMakeOBJCCompiler.cmake.in
[edit]
[-] CheckCSourceCompiles.cmake
[edit]
[-] CMakeOBJCCompilerABI.m
[edit]
[-] CheckCSourceRuns.cmake
[edit]
[-] CMakeOBJCCompilerId.m.in
[edit]
[-] CheckCXXCompilerFlag.cmake
[edit]
[-] CMakeOBJCInformation.cmake
[edit]
[-] CMakeTestCSharpCompiler.cmake
[edit]
[-] CMakeOBJCXXCompiler.cmake.in
[edit]
[-] CheckCXXSourceCompiles.cmake
[edit]
[-] CMakeOBJCXXCompilerABI.mm
[edit]
[-] CheckCXXSourceRuns.cmake
[edit]
[-] CMakeOBJCXXCompilerId.mm.in
[edit]
[-] CMakeTestCUDACompiler.cmake
[edit]
[-] CMakeOBJCXXInformation.cmake
[edit]
[-] CMakeTestCXXCompiler.cmake
[edit]
[-] CMakePackageConfigHelpers.cmake
[edit]
[-] CheckCXXSymbolExists.cmake
[edit]
[-] CMakeParseArguments.cmake
[edit]
[-] CMakeTestCompilerCommon.cmake
[edit]
[-] CMakeParseImplicitIncludeInfo.cmake
[edit]
[-] CMakeTestFortranCompiler.cmake
[edit]
[-] CMakeParseImplicitLinkInfo.cmake
[edit]
[-] CMakeTestGNU.c
[edit]
[-] FindHg.cmake
[edit]
[-] CMakeParseLibraryArchitecture.cmake
[edit]
[-] CheckCompilerFlag.cmake
[edit]
[-] CMakePrintHelpers.cmake
[edit]
[-] CMakeTestISPCCompiler.cmake
[edit]
[-] CMakePrintSystemInformation.cmake
[edit]
[-] CheckForPthreads.c
[edit]
[-] CMakePushCheckState.cmake
[edit]
[-] CheckFortranCompilerFlag.cmake
[edit]
[-] CMakeRCCompiler.cmake.in
[edit]
[-] CheckFortranFunctionExists.cmake
[edit]
[-] CMakeRCInformation.cmake
[edit]
[-] CheckFortranSourceCompiles.cmake
[edit]
[-] CMakeSwiftCompiler.cmake.in
[edit]
[-] CheckFortranSourceRuns.cmake
[edit]
[-] CMakeSwiftInformation.cmake
[edit]
[-] DeployQt4.cmake
[edit]
[-] Dart.cmake
[edit]
[-] CMakeSystemSpecificInformation.cmake
[edit]
[-] FindQt.cmake
[edit]
[-] CheckFunctionExists.c
[edit]
[-] CheckFunctionExists.cmake
[edit]
[-] CheckIPOSupported.cmake
[edit]
[-] CheckIncludeFile.c.in
[edit]
[-] CheckIncludeFile.cmake
[edit]
[-] CheckIncludeFile.cxx.in
[edit]
[-] CheckIncludeFileCXX.cmake
[edit]
[-] CheckIncludeFiles.cmake
[edit]
[-] CheckLanguage.cmake
[edit]
[-] CheckLibraryExists.cmake
[edit]
[-] CheckLibraryExists.lists.in
[edit]
[-] CheckLinkerFlag.cmake
[edit]
[-] CheckOBJCCompilerFlag.cmake
[edit]
[-] CheckOBJCSourceCompiles.cmake
[edit]
[-] CheckOBJCSourceRuns.cmake
[edit]
[-] CheckOBJCXXCompilerFlag.cmake
[edit]
[-] CheckOBJCXXSourceCompiles.cmake
[edit]
[-] CheckOBJCXXSourceRuns.cmake
[edit]
[-] CheckPIESupported.cmake
[edit]
[-] CheckPrototypeDefinition.c.in
[edit]
[-] CheckPrototypeDefinition.cmake
[edit]
[-] CheckSizeOf.cmake
[edit]
[-] CheckSourceCompiles.cmake
[edit]
[-] CheckSourceRuns.cmake
[edit]
[-] CheckStructHasMember.cmake
[edit]
[-] CheckSymbolExists.cmake
[edit]
[-] CheckTypeSize.c.in
[edit]
[-] CheckTypeSize.cmake
[edit]
[-] CheckTypeSizeMap.cmake.in
[edit]
[-] CheckVariableExists.c
[edit]
[-] CheckVariableExists.cmake
[edit]
[-] FindFLTK.cmake
[edit]
[-] DartConfiguration.tcl.in
[edit]
[-] FindGDAL.cmake
[edit]
[-] Documentation.cmake
[edit]
[-] FindGIF.cmake
[edit]
[-] DummyCXXFile.cxx
[edit]
[-] FindGLEW.cmake
[edit]
[-] ExternalData.cmake
[edit]
[-] FindDoxygen.cmake
[edit]
[-] UseQt4.cmake
[edit]
[-] ExternalData_config.cmake.in
[edit]
[-] FindEXPAT.cmake
[edit]
[-] readme.txt
[edit]
[-] FindRuby.cmake
[edit]
[-] FindEnvModules.cmake
[edit]
[-] FindFLEX.cmake
[edit]
[-] FindFLTK2.cmake
[edit]
[-] ExternalProject.cmake
[edit]
[-] FindFontconfig.cmake
[edit]
[-] FLTKCompatibility.cmake
[edit]
[-] FindFreetype.cmake
[edit]
[-] FeatureSummary.cmake
[edit]
[-] FindGLU.cmake
[edit]
[-] FetchContent.cmake
[edit]
[-] FindGLUT.cmake
[edit]
[-] FindALSA.cmake
[edit]
[-] FindGSL.cmake
[edit]
[-] FindASPELL.cmake
[edit]
[-] FindGTK.cmake
[edit]
[-] FindAVIFile.cmake
[edit]
[-] FindGTK2.cmake
[edit]
[-] FindArmadillo.cmake
[edit]
[-] FindGTest.cmake
[edit]
[-] FindBISON.cmake
[edit]
[-] FindGettext.cmake
[edit]
[-] FindBLAS.cmake
[edit]
[-] FindGit.cmake
[edit]
[-] FindBZip2.cmake
[edit]
[-] FindGnuTLS.cmake
[edit]
[-] FindBacktrace.cmake
[edit]
[-] FindGnuplot.cmake
[edit]
[-] FindBoost.cmake
[edit]
[-] FindHDF5.cmake
[edit]
[-] FindBullet.cmake
[edit]
[-] FindHSPELL.cmake
[edit]
[-] FindCABLE.cmake
[edit]
[-] FindHTMLHelp.cmake
[edit]
[-] FindCUDA.cmake
[edit]
[-] FindGCCXML.cmake
[edit]
[-] FindCUDAToolkit.cmake
[edit]
[-] FindICU.cmake
[edit]
[-] FindCURL.cmake
[edit]
[-] FindIce.cmake
[edit]
[-] FindCVS.cmake
[edit]
[-] FindIconv.cmake
[edit]
[-] FindCoin3D.cmake
[edit]
[-] FindIcotool.cmake
[edit]
[-] FindCups.cmake
[edit]
[-] FindImageMagick.cmake
[edit]
[-] FindCurses.cmake
[edit]
[-] FindIntl.cmake
[edit]
[-] FindCxxTest.cmake
[edit]
[-] FindJNI.cmake
[edit]
[-] FindCygwin.cmake
[edit]
[-] FindJPEG.cmake
[edit]
[-] FindDCMTK.cmake
[edit]
[-] FindJasper.cmake
[edit]
[-] FindDart.cmake
[edit]
[-] FindJava.cmake
[edit]
[-] FindDevIL.cmake
[edit]
[-] FindLibArchive.cmake
[edit]
[-] FindKDE3.cmake
[edit]
[-] FindKDE4.cmake
[edit]
[-] FindLAPACK.cmake
[edit]
[-] FindLATEX.cmake
[edit]
[-] FindLTTngUST.cmake
[edit]
[-] FindTclsh.cmake
[edit]
[-] FindLibLZMA.cmake
[edit]
[-] FindThreads.cmake
[edit]
[-] FindLibXml2.cmake
[edit]
[-] FindUnixCommands.cmake
[edit]
[-] FindLibXslt.cmake
[edit]
[-] FindVulkan.cmake
[edit]
[-] FindLibinput.cmake
[edit]
[-] FindWget.cmake
[edit]
[-] FindLua.cmake
[edit]
[-] FindWish.cmake
[edit]
[-] FindLua50.cmake
[edit]
[-] FindX11.cmake
[edit]
[-] FindLua51.cmake
[edit]
[-] FindXCTest.cmake
[edit]
[-] FindMFC.cmake
[edit]
[-] FindXMLRPC.cmake
[edit]
[-] FindMPEG.cmake
[edit]
[-] FindXalanC.cmake
[edit]
[-] FindMPEG2.cmake
[edit]
[-] FindXercesC.cmake
[edit]
[-] FindMPI.cmake
[edit]
[-] FindZLIB.cmake
[edit]
[-] FindMatlab.cmake
[edit]
[-] Findosg.cmake
[edit]
[-] FindMotif.cmake
[edit]
[-] FindosgAnimation.cmake
[edit]
[-] FindODBC.cmake
[edit]
[-] FindosgDB.cmake
[edit]
[-] FindOpenACC.cmake
[edit]
[-] FindosgFX.cmake
[edit]
[-] FindOpenAL.cmake
[edit]
[-] FindosgGA.cmake
[edit]
[-] FindOpenCL.cmake
[edit]
[-] FindosgIntrospection.cmake
[edit]
[-] FindOpenGL.cmake
[edit]
[-] FindosgManipulator.cmake
[edit]
[-] FindOpenMP.cmake
[edit]
[-] FindosgParticle.cmake
[edit]
[-] FindOpenSSL.cmake
[edit]
[-] FindSWIG.cmake
[edit]
[-] FindOpenSceneGraph.cmake
[edit]
[-] FindSelfPackers.cmake
[edit]
[-] FindOpenThreads.cmake
[edit]
[-] FindosgPresentation.cmake
[edit]
[-] FindPHP4.cmake
[edit]
[-] FindosgProducer.cmake
[edit]
[-] FindPNG.cmake
[edit]
[-] InstallRequiredSystemLibraries.cmake
[edit]
[-] FindPackageHandleStandardArgs.cmake
[edit]
[-] FindSquish.cmake
[edit]
[-] FindPackageMessage.cmake
[edit]
[-] FindosgQt.cmake
[edit]
[-] FindPatch.cmake
[edit]
[-] FindosgShadow.cmake
[edit]
[-] FindPerl.cmake
[edit]
[-] FindosgSim.cmake
[edit]
[-] FindPerlLibs.cmake
[edit]
[-] FindosgTerrain.cmake
[edit]
[-] FindPhysFS.cmake
[edit]
[-] FindosgText.cmake
[edit]
[-] FindPike.cmake
[edit]
[-] FindosgUtil.cmake
[edit]
[-] FindPkgConfig.cmake
[edit]
[-] FindSubversion.cmake
[edit]
[-] FindPostgreSQL.cmake
[edit]
[-] FindosgViewer.cmake
[edit]
[-] FindProducer.cmake
[edit]
[-] FindosgVolume.cmake
[edit]
[-] FindProtobuf.cmake
[edit]
[-] FindosgWidget.cmake
[edit]
[-] FindPython.cmake
[edit]
[-] Findosg_functions.cmake
[edit]
[-] FindPython2.cmake
[edit]
[-] FindwxWidgets.cmake
[edit]
[-] FindPython3.cmake
[edit]
[-] FindTCL.cmake
[edit]
[-] FindPythonInterp.cmake
[edit]
[-] FindTIFF.cmake
[edit]
[-] FindPythonLibs.cmake
[edit]
[-] FindwxWindows.cmake
[edit]
[-] FindQt3.cmake
[edit]
[-] FortranCInterface.cmake
[edit]
[-] FindQt4.cmake
[edit]
[-] GNUInstallDirs.cmake
[edit]
[-] FindQuickTime.cmake
[edit]
[-] GenerateExportHeader.cmake
[edit]
[-] FindRTI.cmake
[edit]
[-] GetPrerequisites.cmake
[edit]
[-] GoogleTest.cmake
[edit]
[-] FindSDL.cmake
[edit]
[-] GoogleTestAddTests.cmake
[edit]
[-] FindSDL_image.cmake
[edit]
[-] ITKCompatibility.cmake
[edit]
[-] FindSDL_mixer.cmake
[edit]
[-] MacOSXFrameworkInfo.plist.in
[edit]
[-] FindSDL_net.cmake
[edit]
[-] KDE3Macros.cmake
[edit]
[-] FindSDL_sound.cmake
[edit]
[-] MacOSXBundleInfo.plist.in
[edit]
[-] FindSDL_ttf.cmake
[edit]
[-] MatlabTestsRedirect.cmake
[edit]
[-] FindSQLite3.cmake
[edit]
[-] FindTclStub.cmake
[edit]
[-] MacroAddFileDependencies.cmake
[edit]
[-] ProcessorCount.cmake
[edit]
[-] Qt4ConfigDependentSettings.cmake
[edit]
[-] Qt4Macros.cmake
[edit]
[-] SelectLibraryConfigurations.cmake
[edit]
[-] Squish4RunTestCase.bat
[edit]
[-] Squish4RunTestCase.sh
[edit]
[-] SquishRunTestCase.bat
[edit]
[-] SquishRunTestCase.sh
[edit]
[-] SquishTestScript.cmake
[edit]
[-] SystemInformation.cmake
[edit]
[-] SystemInformation.in
[edit]
[-] TestBigEndian.cmake
[edit]
[-] TestCXXAcceptsFlag.cmake
[edit]
[-] TestEndianess.c.in
[edit]
[-] TestForANSIForScope.cmake
[edit]
[-] TestForANSIStreamHeaders.cmake
[edit]
[-] TestForANSIStreamHeaders.cxx
[edit]
[-] TestForAnsiForScope.cxx
[edit]
[-] TestForSSTREAM.cmake
[edit]
[-] TestForSSTREAM.cxx
[edit]
[-] TestForSTDNamespace.cmake
[edit]
[-] TestForSTDNamespace.cxx
[edit]
[-] UseEcos.cmake
[edit]
[-] UseJava.cmake
[edit]
[-] UsePkgConfig.cmake
[edit]
[-] UseSWIG.cmake
[edit]
[-] Use_wxWindows.cmake
[edit]
[-] UsewxWidgets.cmake
[edit]
[-] VTKCompatibility.cmake
[edit]
[-] WriteBasicConfigVersionFile.cmake
[edit]
[-] WriteCompilerDetectionHeader.cmake
[edit]
[+]
CUDA
[+]
ExternalProject
[-] CMakeTestHIPCompiler.cmake
[edit]
[-] FindMsys.cmake
[edit]
[-] FindOpenSP.cmake
[edit]
[-] FindSDL_gfx.cmake
[edit]
[-] ecos_clean.cmake
[edit]
[-] exportheader.cmake.in
[edit]
[-] kde3init_dummy.cpp.in
[edit]
[-] kde3uic.cmake
[edit]
[-] CMakeASM_MARMASMInformation.cmake
[edit]
[-] CMakeTestASM_MARMASMCompiler.cmake
[edit]
[-] CMakeDetermineASM_MARMASMCompiler.cmake
[edit]
[-] CMakeDetermineHIPCompiler.cmake
[edit]
[-] CMakeFortranCompilerABI.F90
[edit]
[-] CMakeHIPCompiler.cmake.in
[edit]
[-] CMakeHIPCompilerABI.hip
[edit]
[-] CMakeHIPCompilerId.hip.in
[edit]
[-] CMakeHIPInformation.cmake
[edit]