| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104 |
- # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- # file Copyright.txt or https://cmake.org/licensing for details.
- include(CheckIncludeFile)
- # Check if we can build support for ELF parsing.
- if(CMAKE_CXX_PLATFORM_ID MATCHES "OpenBSD")
- CHECK_INCLUDE_FILES("stdint.h;elf_abi.h" HAVE_ELF_H)
- else()
- CHECK_INCLUDE_FILE("elf.h" HAVE_ELF_H)
- endif()
- if(HAVE_ELF_H)
- set(CMAKE_USE_ELF_PARSER 1)
- elseif(HAIKU)
- # On Haiku, we need to include elf32.h from the private headers
- set(CMake_HAIKU_INCLUDE_DIRS
- /boot/system/develop/headers/private/system
- /boot/system/develop/headers/private/system/arch/x86
- )
- set(CMAKE_REQUIRED_INCLUDES ${CMake_HAIKU_INCLUDE_DIRS})
- CHECK_INCLUDE_FILE("elf32.h" HAVE_ELF32_H)
- unset(CMAKE_REQUIRED_INCLUDES)
- if(HAVE_ELF32_H)
- set(CMAKE_USE_ELF_PARSER 1)
- else()
- unset(CMake_HAIKU_INCLUDE_DIRS)
- set(CMAKE_USE_ELF_PARSER)
- endif()
- else()
- set(CMAKE_USE_ELF_PARSER)
- endif()
- if(APPLE)
- set(CMAKE_USE_MACH_PARSER 1)
- endif()
- set(EXECUTABLE_OUTPUT_PATH ${CMake_BIN_DIR})
- if(WIN32)
- # ensure Unicode friendly APIs are used on Windows
- add_definitions(-DUNICODE -D_UNICODE)
- # minimize windows.h content
- add_definitions(-DWIN32_LEAN_AND_MEAN)
- endif()
- # configure the .dox.in file
- if(CMake_BUILD_DEVELOPER_REFERENCE)
- configure_file(
- "${CMake_SOURCE_DIR}/Source/dir.dox.in"
- "${CMake_BINARY_DIR}/Source/dir.dox"
- @ONLY
- )
- endif()
- # configure the .h file
- configure_file(
- "${CMake_SOURCE_DIR}/Source/cmConfigure.cmake.h.in"
- "${CMake_BINARY_DIR}/Source/cmConfigure.h"
- )
- configure_file(
- "${CMake_SOURCE_DIR}/Source/cmVersionConfig.h.in"
- "${CMake_BINARY_DIR}/Source/cmVersionConfig.h"
- )
- configure_file(
- "${CMake_SOURCE_DIR}/Source/CPack/cmCPackConfigure.h.in"
- "${CMake_BINARY_DIR}/Source/CPack/cmCPackConfigure.h"
- )
- # Tell CMake executable in the build tree where to find the source tree.
- configure_file(
- "${CMake_SOURCE_DIR}/Source/CMakeSourceDir.txt.in"
- "${CMake_BINARY_DIR}/CMakeFiles/CMakeSourceDir.txt" @ONLY
- )
- # add the include path to find the .h
- include_directories(
- "${CMake_BINARY_DIR}/Source"
- "${CMake_SOURCE_DIR}/Source"
- "${CMake_SOURCE_DIR}/Source/LexerParser"
- ${CMAKE_ZLIB_INCLUDES}
- ${CMAKE_EXPAT_INCLUDES}
- ${CMAKE_TAR_INCLUDES}
- ${CMAKE_COMPRESS_INCLUDES}
- ${CMake_HAIKU_INCLUDE_DIRS}
- )
- # let cmake know it is supposed to use it
- add_definitions(-DCMAKE_BUILD_WITH_CMAKE)
- # Check if we can build the ELF parser.
- if(CMAKE_USE_ELF_PARSER)
- set(ELF_SRCS cmELF.h cmELF.cxx)
- endif()
- # Check if we can build the Mach-O parser.
- if(CMAKE_USE_MACH_PARSER)
- set(MACH_SRCS cmMachO.h cmMachO.cxx)
- endif()
- #
- # Sources for CMakeLib
- #
- set(SRCS
- # Lexers/Parsers
- LexerParser/cmCommandArgumentLexer.cxx
- LexerParser/cmCommandArgumentLexer.h
- LexerParser/cmCommandArgumentLexer.in.l
- LexerParser/cmCommandArgumentParser.cxx
- LexerParser/cmCommandArgumentParserTokens.h
- LexerParser/cmCommandArgumentParser.y
- LexerParser/cmDependsJavaLexer.cxx
- LexerParser/cmDependsJavaLexer.h
- LexerParser/cmDependsJavaLexer.in.l
- LexerParser/cmDependsJavaParser.cxx
- LexerParser/cmDependsJavaParserTokens.h
- LexerParser/cmDependsJavaParser.y
- LexerParser/cmExprLexer.cxx
- LexerParser/cmExprLexer.h
- LexerParser/cmExprLexer.in.l
- LexerParser/cmExprParser.cxx
- LexerParser/cmExprParserTokens.h
- LexerParser/cmExprParser.y
- LexerParser/cmFortranLexer.cxx
- LexerParser/cmFortranLexer.h
- LexerParser/cmFortranLexer.in.l
- LexerParser/cmFortranParser.cxx
- LexerParser/cmFortranParserTokens.h
- LexerParser/cmFortranParser.y
- LexerParser/cmListFileLexer.c
- LexerParser/cmListFileLexer.in.l
- cmAffinity.cxx
- cmAffinity.h
- cmArchiveWrite.cxx
- cmBase32.cxx
- cmCacheManager.cxx
- cmCacheManager.h
- cmCLocaleEnvironmentScope.h
- cmCLocaleEnvironmentScope.cxx
- cmCommandArgumentParserHelper.cxx
- cmCommonTargetGenerator.cxx
- cmCommonTargetGenerator.h
- cmComputeComponentGraph.cxx
- cmComputeComponentGraph.h
- cmComputeLinkDepends.cxx
- cmComputeLinkDepends.h
- cmComputeLinkInformation.cxx
- cmComputeLinkInformation.h
- cmComputeTargetDepends.h
- cmComputeTargetDepends.cxx
- cmCPackPropertiesGenerator.h
- cmCPackPropertiesGenerator.cxx
- cmCryptoHash.cxx
- cmCryptoHash.h
- cmCurl.cxx
- cmCurl.h
- cmCustomCommand.cxx
- cmCustomCommand.h
- cmCustomCommandGenerator.cxx
- cmCustomCommandGenerator.h
- cmDefinitions.cxx
- cmDefinitions.h
- cmDepends.cxx
- cmDepends.h
- cmDependsC.cxx
- cmDependsC.h
- cmDependsFortran.cxx
- cmDependsFortran.h
- cmDependsJava.cxx
- cmDependsJava.h
- cmDependsJavaParserHelper.cxx
- cmDependsJavaParserHelper.h
- cmDocumentation.cxx
- cmDocumentationFormatter.cxx
- cmDocumentationSection.cxx
- cmDynamicLoader.cxx
- cmDynamicLoader.h
- ${ELF_SRCS}
- cmExprParserHelper.cxx
- cmExportBuildAndroidMKGenerator.h
- cmExportBuildAndroidMKGenerator.cxx
- cmExportBuildFileGenerator.h
- cmExportBuildFileGenerator.cxx
- cmExportFileGenerator.h
- cmExportFileGenerator.cxx
- cmExportInstallAndroidMKGenerator.h
- cmExportInstallAndroidMKGenerator.cxx
- cmExportInstallFileGenerator.h
- cmExportInstallFileGenerator.cxx
- cmExportTryCompileFileGenerator.h
- cmExportTryCompileFileGenerator.cxx
- cmExportSet.h
- cmExportSet.cxx
- cmExportSetMap.h
- cmExportSetMap.cxx
- cmExternalMakefileProjectGenerator.cxx
- cmExternalMakefileProjectGenerator.h
- cmExtraCodeBlocksGenerator.cxx
- cmExtraCodeBlocksGenerator.h
- cmExtraCodeLiteGenerator.cxx
- cmExtraCodeLiteGenerator.h
- cmExtraEclipseCDT4Generator.cxx
- cmExtraEclipseCDT4Generator.h
- cmExtraKateGenerator.cxx
- cmExtraKateGenerator.h
- cmExtraSublimeTextGenerator.cxx
- cmExtraSublimeTextGenerator.h
- cmFileLock.cxx
- cmFileLock.h
- cmFileLockPool.cxx
- cmFileLockPool.h
- cmFileLockResult.cxx
- cmFileLockResult.h
- cmFilePathChecksum.cxx
- cmFilePathChecksum.h
- cmFileTimeComparison.cxx
- cmFileTimeComparison.h
- cmFortranParserImpl.cxx
- cmFSPermissions.cxx
- cmFSPermissions.h
- cmGeneratedFileStream.cxx
- cmGeneratorExpressionContext.cxx
- cmGeneratorExpressionContext.h
- cmGeneratorExpressionDAGChecker.cxx
- cmGeneratorExpressionDAGChecker.h
- cmGeneratorExpressionEvaluationFile.cxx
- cmGeneratorExpressionEvaluationFile.h
- cmGeneratorExpressionEvaluator.cxx
- cmGeneratorExpressionEvaluator.h
- cmGeneratorExpressionLexer.cxx
- cmGeneratorExpressionLexer.h
- cmGeneratorExpressionNode.cxx
- cmGeneratorExpressionNode.h
- cmGeneratorExpressionParser.cxx
- cmGeneratorExpressionParser.h
- cmGeneratorExpression.cxx
- cmGeneratorExpression.h
- cmGeneratorTarget.cxx
- cmGeneratorTarget.h
- cmGlobalCommonGenerator.cxx
- cmGlobalCommonGenerator.h
- cmGlobalGenerator.cxx
- cmGlobalGenerator.h
- cmGlobalGeneratorFactory.h
- cmGlobalUnixMakefileGenerator3.cxx
- cmGlobalUnixMakefileGenerator3.h
- cmGlobVerificationManager.cxx
- cmGlobVerificationManager.h
- cmGraphAdjacencyList.h
- cmGraphVizWriter.cxx
- cmGraphVizWriter.h
- cmInstallGenerator.h
- cmInstallGenerator.cxx
- cmInstallExportGenerator.cxx
- cmInstalledFile.h
- cmInstalledFile.cxx
- cmInstallFilesGenerator.h
- cmInstallFilesGenerator.cxx
- cmInstallScriptGenerator.h
- cmInstallScriptGenerator.cxx
- cmInstallTargetGenerator.h
- cmInstallTargetGenerator.cxx
- cmInstallDirectoryGenerator.h
- cmInstallDirectoryGenerator.cxx
- cmLinkedTree.h
- cmLinkItem.h
- cmLinkLineComputer.cxx
- cmLinkLineComputer.h
- cmLinkLineDeviceComputer.cxx
- cmLinkLineDeviceComputer.h
- cmListFileCache.cxx
- cmListFileCache.h
- cmLocalCommonGenerator.cxx
- cmLocalCommonGenerator.h
- cmLocalGenerator.cxx
- cmLocalGenerator.h
- cmRulePlaceholderExpander.cxx
- cmRulePlaceholderExpander.h
- cmLocalUnixMakefileGenerator3.cxx
- cmLocale.h
- ${MACH_SRCS}
- cmMakefile.cxx
- cmMakefile.h
- cmMakefileTargetGenerator.cxx
- cmMakefileExecutableTargetGenerator.cxx
- cmMakefileLibraryTargetGenerator.cxx
- cmMakefileUtilityTargetGenerator.cxx
- cmMessenger.cxx
- cmMessenger.h
- cmMSVC60LinkLineComputer.cxx
- cmMSVC60LinkLineComputer.h
- cmOSXBundleGenerator.cxx
- cmOSXBundleGenerator.h
- cmOutputConverter.cxx
- cmOutputConverter.h
- cmNewLineStyle.h
- cmNewLineStyle.cxx
- cmOrderDirectories.cxx
- cmOrderDirectories.h
- cmPolicies.h
- cmPolicies.cxx
- cmProcessOutput.cxx
- cmProcessOutput.h
- cmProcessTools.cxx
- cmProcessTools.h
- cmProperty.cxx
- cmProperty.h
- cmPropertyDefinition.cxx
- cmPropertyDefinition.h
- cmPropertyDefinitionMap.cxx
- cmPropertyDefinitionMap.h
- cmPropertyMap.cxx
- cmPropertyMap.h
- cmQtAutoGen.cxx
- cmQtAutoGen.h
- cmQtAutoGenerator.cxx
- cmQtAutoGenerator.h
- cmQtAutoGenInitializer.cxx
- cmQtAutoGenInitializer.h
- cmQtAutoGeneratorMocUic.cxx
- cmQtAutoGeneratorMocUic.h
- cmQtAutoGeneratorRcc.cxx
- cmQtAutoGeneratorRcc.h
- cmRST.cxx
- cmRST.h
- cmScriptGenerator.h
- cmScriptGenerator.cxx
- cmSourceFile.cxx
- cmSourceFile.h
- cmSourceFileLocation.cxx
- cmSourceFileLocation.h
- cmSourceFileLocationKind.h
- cmSourceGroup.cxx
- cmSourceGroup.h
- cmState.cxx
- cmState.h
- cmStateDirectory.cxx
- cmStateDirectory.h
- cmStateSnapshot.cxx
- cmStateSnapshot.h
- cmStateTypes.h
- cmSystemTools.cxx
- cmSystemTools.h
- cmTarget.cxx
- cmTarget.h
- cmTargetPropertyComputer.cxx
- cmTargetPropertyComputer.h
- cmTargetExport.h
- cmTest.cxx
- cmTest.h
- cmTestGenerator.cxx
- cmTestGenerator.h
- cmUuid.cxx
- cmUVHandlePtr.cxx
- cmUVHandlePtr.h
- cmUVSignalHackRAII.h
- cmVariableWatch.cxx
- cmVariableWatch.h
- cmVersion.cxx
- cmVersion.h
- cmWorkingDirectory.cxx
- cmWorkingDirectory.h
- cmXMLParser.cxx
- cmXMLParser.h
- cmXMLSafe.cxx
- cmXMLSafe.h
- cmXMLWriter.cxx
- cmXMLWriter.h
- cmake.cxx
- cmake.h
- cmCommand.cxx
- cmCommand.h
- cmCommands.cxx
- cmCommands.h
- cmAddCompileDefinitionsCommand.cxx
- cmAddCompileDefinitionsCommand.h
- cmAddCompileOptionsCommand.cxx
- cmAddCompileOptionsCommand.h
- cmAddLinkOptionsCommand.cxx
- cmAddLinkOptionsCommand.h
- cmAddCustomCommandCommand.cxx
- cmAddCustomCommandCommand.h
- cmAddCustomTargetCommand.cxx
- cmAddCustomTargetCommand.h
- cmAddDefinitionsCommand.cxx
- cmAddDefinitionsCommand.h
- cmAddDependenciesCommand.cxx
- cmAddDependenciesCommand.h
- cmAddExecutableCommand.cxx
- cmAddExecutableCommand.h
- cmAddLibraryCommand.cxx
- cmAddLibraryCommand.h
- cmAddSubDirectoryCommand.cxx
- cmAddSubDirectoryCommand.h
- cmAddTestCommand.cxx
- cmAddTestCommand.h
- cmAuxSourceDirectoryCommand.cxx
- cmAuxSourceDirectoryCommand.h
- cmBreakCommand.cxx
- cmBreakCommand.h
- cmBuildCommand.cxx
- cmBuildCommand.h
- cmBuildNameCommand.cxx
- cmBuildNameCommand.h
- cmCMakeHostSystemInformationCommand.cxx
- cmCMakeHostSystemInformationCommand.h
- cmCMakeMinimumRequired.cxx
- cmCMakeMinimumRequired.h
- cmCMakePolicyCommand.cxx
- cmCMakePolicyCommand.h
- cmCommandArgumentsHelper.cxx
- cmCommandArgumentsHelper.h
- cmConditionEvaluator.cxx
- cmConditionEvaluator.h
- cmConfigureFileCommand.cxx
- cmConfigureFileCommand.h
- cmContinueCommand.cxx
- cmContinueCommand.h
- cmCoreTryCompile.cxx
- cmCoreTryCompile.h
- cmCreateTestSourceList.cxx
- cmCreateTestSourceList.h
- cmDefinePropertyCommand.cxx
- cmDefinePropertyCommand.h
- cmDisallowedCommand.cxx
- cmDisallowedCommand.h
- cmEnableLanguageCommand.cxx
- cmEnableLanguageCommand.h
- cmEnableTestingCommand.cxx
- cmEnableTestingCommand.h
- cmExecProgramCommand.cxx
- cmExecProgramCommand.h
- cmExecuteProcessCommand.cxx
- cmExecuteProcessCommand.h
- cmExpandedCommandArgument.cxx
- cmExpandedCommandArgument.h
- cmExportCommand.cxx
- cmExportCommand.h
- cmExportLibraryDependenciesCommand.cxx
- cmExportLibraryDependenciesCommand.h
- cmFLTKWrapUICommand.cxx
- cmFLTKWrapUICommand.h
- cmFileCommand.cxx
- cmFileCommand.h
- cmFindBase.cxx
- cmFindBase.h
- cmFindCommon.cxx
- cmFindCommon.h
- cmFindFileCommand.cxx
- cmFindFileCommand.h
- cmFindLibraryCommand.cxx
- cmFindLibraryCommand.h
- cmFindPackageCommand.cxx
- cmFindPackageCommand.h
- cmFindPathCommand.cxx
- cmFindPathCommand.h
- cmFindProgramCommand.cxx
- cmFindProgramCommand.h
- cmForEachCommand.cxx
- cmForEachCommand.h
- cmFunctionCommand.cxx
- cmFunctionCommand.h
- cmGetCMakePropertyCommand.cxx
- cmGetCMakePropertyCommand.h
- cmGetDirectoryPropertyCommand.cxx
- cmGetDirectoryPropertyCommand.h
- cmGetFilenameComponentCommand.cxx
- cmGetFilenameComponentCommand.h
- cmGetPropertyCommand.cxx
- cmGetPropertyCommand.h
- cmGetSourceFilePropertyCommand.cxx
- cmGetSourceFilePropertyCommand.h
- cmGetTargetPropertyCommand.cxx
- cmGetTargetPropertyCommand.h
- cmGetTestPropertyCommand.cxx
- cmGetTestPropertyCommand.h
- cmHexFileConverter.cxx
- cmHexFileConverter.h
- cmIfCommand.cxx
- cmIfCommand.h
- cmIncludeCommand.cxx
- cmIncludeCommand.h
- cmIncludeDirectoryCommand.cxx
- cmIncludeDirectoryCommand.h
- cmIncludeExternalMSProjectCommand.cxx
- cmIncludeExternalMSProjectCommand.h
- cmIncludeGuardCommand.cxx
- cmIncludeGuardCommand.h
- cmIncludeRegularExpressionCommand.cxx
- cmIncludeRegularExpressionCommand.h
- cmInstallCommand.cxx
- cmInstallCommand.h
- cmInstallCommandArguments.cxx
- cmInstallCommandArguments.h
- cmInstallFilesCommand.cxx
- cmInstallFilesCommand.h
- cmInstallProgramsCommand.cxx
- cmInstallProgramsCommand.h
- cmInstallTargetsCommand.cxx
- cmInstallTargetsCommand.h
- cmLinkDirectoriesCommand.cxx
- cmLinkDirectoriesCommand.h
- cmLinkLibrariesCommand.cxx
- cmLinkLibrariesCommand.h
- cmListCommand.cxx
- cmListCommand.h
- cmLoadCacheCommand.cxx
- cmLoadCacheCommand.h
- cmLoadCommandCommand.cxx
- cmLoadCommandCommand.h
- cmMacroCommand.cxx
- cmMacroCommand.h
- cmMakeDirectoryCommand.cxx
- cmMakeDirectoryCommand.h
- cmMarkAsAdvancedCommand.cxx
- cmMarkAsAdvancedCommand.h
- cmMathCommand.cxx
- cmMathCommand.h
- cmMessageCommand.cxx
- cmMessageCommand.h
- cmOptionCommand.cxx
- cmOptionCommand.h
- cmOutputRequiredFilesCommand.cxx
- cmOutputRequiredFilesCommand.h
- cmParseArgumentsCommand.cxx
- cmParseArgumentsCommand.h
- cmPathLabel.cxx
- cmPathLabel.h
- cmProjectCommand.cxx
- cmProjectCommand.h
- cmQTWrapCPPCommand.cxx
- cmQTWrapCPPCommand.h
- cmQTWrapUICommand.cxx
- cmQTWrapUICommand.h
- cmRemoveCommand.cxx
- cmRemoveCommand.h
- cmRemoveDefinitionsCommand.cxx
- cmRemoveDefinitionsCommand.h
- cmReturnCommand.cxx
- cmReturnCommand.h
- cmSearchPath.cxx
- cmSearchPath.h
- cmSeparateArgumentsCommand.cxx
- cmSeparateArgumentsCommand.h
- cmSetCommand.cxx
- cmSetCommand.h
- cmSetDirectoryPropertiesCommand.cxx
- cmSetDirectoryPropertiesCommand.h
- cmSetPropertyCommand.cxx
- cmSetPropertyCommand.h
- cmSetSourceFilesPropertiesCommand.cxx
- cmSetSourceFilesPropertiesCommand.h
- cmSetTargetPropertiesCommand.cxx
- cmSetTargetPropertiesCommand.h
- cmSetTestsPropertiesCommand.cxx
- cmSetTestsPropertiesCommand.h
- cmSiteNameCommand.cxx
- cmSiteNameCommand.h
- cmSourceGroupCommand.cxx
- cmSourceGroupCommand.h
- cmStringReplaceHelper.cxx
- cmStringCommand.cxx
- cmStringCommand.h
- cmSubdirCommand.cxx
- cmSubdirCommand.h
- cmSubdirDependsCommand.cxx
- cmSubdirDependsCommand.h
- cmTargetCompileDefinitionsCommand.cxx
- cmTargetCompileDefinitionsCommand.h
- cmTargetCompileFeaturesCommand.cxx
- cmTargetCompileFeaturesCommand.h
- cmTargetCompileOptionsCommand.cxx
- cmTargetCompileOptionsCommand.h
- cmTargetIncludeDirectoriesCommand.cxx
- cmTargetIncludeDirectoriesCommand.h
- cmTargetLinkOptionsCommand.cxx
- cmTargetLinkOptionsCommand.h
- cmTargetLinkLibrariesCommand.cxx
- cmTargetLinkLibrariesCommand.h
- cmTargetPropCommandBase.cxx
- cmTargetPropCommandBase.h
- cmTargetSourcesCommand.cxx
- cmTargetSourcesCommand.h
- cmTimestamp.cxx
- cmTimestamp.h
- cmTryCompileCommand.cxx
- cmTryCompileCommand.h
- cmTryRunCommand.cxx
- cmTryRunCommand.h
- cmUnexpectedCommand.cxx
- cmUnexpectedCommand.h
- cmUnsetCommand.cxx
- cmUnsetCommand.h
- cmUseMangledMesaCommand.cxx
- cmUseMangledMesaCommand.h
- cmUtilitySourceCommand.cxx
- cmUtilitySourceCommand.h
- cmVariableRequiresCommand.cxx
- cmVariableRequiresCommand.h
- cmVariableWatchCommand.cxx
- cmVariableWatchCommand.h
- cmWhileCommand.cxx
- cmWhileCommand.h
- cmWriteFileCommand.cxx
- cmWriteFileCommand.h
- cm_get_date.h
- cm_get_date.c
- cm_utf8.h
- cm_utf8.c
- cm_codecvt.hxx
- cm_codecvt.cxx
- cm_thread.hxx
- cmDuration.h
- cmDuration.cxx
- )
- SET_PROPERTY(SOURCE cmProcessOutput.cxx APPEND PROPERTY COMPILE_DEFINITIONS
- KWSYS_ENCODING_DEFAULT_CODEPAGE=${KWSYS_ENCODING_DEFAULT_CODEPAGE})
- # Xcode only works on Apple
- if(APPLE)
- set(SRCS ${SRCS}
- cmXCodeObject.cxx
- cmXCode21Object.cxx
- cmXCodeScheme.cxx
- cmGlobalXCodeGenerator.cxx
- cmGlobalXCodeGenerator.h
- cmLocalXCodeGenerator.cxx
- cmLocalXCodeGenerator.h)
- endif()
- if (WIN32)
- set(SRCS ${SRCS}
- cmCallVisualStudioMacro.cxx
- cmCallVisualStudioMacro.h
- bindexplib.cxx
- )
- if(NOT UNIX)
- set(SRCS ${SRCS}
- cmGlobalBorlandMakefileGenerator.cxx
- cmGlobalBorlandMakefileGenerator.h
- cmGlobalMSYSMakefileGenerator.cxx
- cmGlobalMinGWMakefileGenerator.cxx
- cmGlobalNMakeMakefileGenerator.cxx
- cmGlobalNMakeMakefileGenerator.h
- cmGlobalJOMMakefileGenerator.cxx
- cmGlobalJOMMakefileGenerator.h
- cmGlobalVisualStudio71Generator.cxx
- cmGlobalVisualStudio71Generator.h
- cmGlobalVisualStudio7Generator.cxx
- cmGlobalVisualStudio7Generator.h
- cmGlobalVisualStudio8Generator.cxx
- cmGlobalVisualStudio8Generator.h
- cmGlobalVisualStudio9Generator.cxx
- cmGlobalVisualStudio9Generator.h
- cmVisualStudioGeneratorOptions.h
- cmVisualStudioGeneratorOptions.cxx
- cmVisualStudio10TargetGenerator.h
- cmVisualStudio10TargetGenerator.cxx
- cmVisualStudio10ToolsetOptions.h
- cmVisualStudio10ToolsetOptions.cxx
- cmLocalVisualStudio10Generator.cxx
- cmLocalVisualStudio10Generator.h
- cmGlobalVisualStudio10Generator.h
- cmGlobalVisualStudio10Generator.cxx
- cmGlobalVisualStudio11Generator.h
- cmGlobalVisualStudio11Generator.cxx
- cmGlobalVisualStudio12Generator.h
- cmGlobalVisualStudio12Generator.cxx
- cmGlobalVisualStudio14Generator.h
- cmGlobalVisualStudio14Generator.cxx
- cmGlobalVisualStudio15Generator.h
- cmGlobalVisualStudio15Generator.cxx
- cmGlobalVisualStudioGenerator.cxx
- cmGlobalVisualStudioGenerator.h
- cmIDEFlagTable.h
- cmIDEOptions.cxx
- cmIDEOptions.h
- cmLocalVisualStudio7Generator.cxx
- cmLocalVisualStudio7Generator.h
- cmLocalVisualStudioGenerator.cxx
- cmLocalVisualStudioGenerator.h
- cmVisualStudioSlnData.h
- cmVisualStudioSlnData.cxx
- cmVisualStudioSlnParser.h
- cmVisualStudioSlnParser.cxx
- cmVisualStudioWCEPlatformParser.h
- cmVisualStudioWCEPlatformParser.cxx
- cmGlobalGhsMultiGenerator.cxx
- cmGlobalGhsMultiGenerator.h
- cmLocalGhsMultiGenerator.cxx
- cmLocalGhsMultiGenerator.h
- cmGhsMultiTargetGenerator.cxx
- cmGhsMultiTargetGenerator.h
- cmGhsMultiGpj.cxx
- cmGhsMultiGpj.h
- cmVSSetupHelper.cxx
- cmVSSetupHelper.h
- )
- # Add a manifest file to executables on Windows to allow for
- # GetVersion to work properly on Windows 8 and above.
- set(MANIFEST_FILE ${CMAKE_CURRENT_SOURCE_DIR}/cmake.version.manifest)
- endif()
- endif ()
- # Watcom support
- if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Linux")
- set_property(SOURCE cmake.cxx APPEND PROPERTY COMPILE_DEFINITIONS CMAKE_USE_WMAKE)
- list(APPEND SRCS
- cmGlobalWatcomWMakeGenerator.cxx
- cmGlobalWatcomWMakeGenerator.h
- )
- endif()
- # Ninja support
- set(SRCS ${SRCS}
- cmGlobalNinjaGenerator.cxx
- cmGlobalNinjaGenerator.h
- cmNinjaTypes.h
- cmLocalNinjaGenerator.cxx
- cmLocalNinjaGenerator.h
- cmNinjaTargetGenerator.cxx
- cmNinjaTargetGenerator.h
- cmNinjaNormalTargetGenerator.cxx
- cmNinjaNormalTargetGenerator.h
- cmNinjaUtilityTargetGenerator.cxx
- cmNinjaUtilityTargetGenerator.h
- cmNinjaLinkLineComputer.cxx
- cmNinjaLinkLineComputer.h
- )
- # Temporary variable for tools targets
- set(_tools)
- if(WIN32 AND NOT CYGWIN)
- set_source_files_properties(cmcldeps.cxx PROPERTIES COMPILE_DEFINITIONS _WIN32_WINNT=0x0501)
- add_executable(cmcldeps cmcldeps.cxx ${MANIFEST_FILE})
- list(APPEND _tools cmcldeps)
- target_link_libraries(cmcldeps CMakeLib)
- endif()
- foreach(v CURL_CA_BUNDLE CURL_CA_PATH)
- if(${v})
- set_property(SOURCE cmCurl.cxx APPEND PROPERTY COMPILE_DEFINITIONS ${v}="${${v}}")
- endif()
- endforeach()
- foreach(check
- STAT_HAS_ST_MTIM
- STAT_HAS_ST_MTIMESPEC
- )
- if(KWSYS_CXX_${check}_COMPILED) # abuse KWSys check cache entry
- set(CMake_${check} 1)
- else()
- set(CMake_${check} 0)
- endif()
- set_property(SOURCE cmFileTimeComparison.cxx APPEND PROPERTY
- COMPILE_DEFINITIONS CMake_${check}=${CMake_${check}})
- endforeach()
- # create a library used by the command line and the GUI
- add_library(CMakeLib ${SRCS})
- target_link_libraries(CMakeLib cmsys
- ${CMAKE_EXPAT_LIBRARIES} ${CMAKE_ZLIB_LIBRARIES}
- ${CMAKE_TAR_LIBRARIES} ${CMAKE_COMPRESS_LIBRARIES}
- ${CMAKE_CURL_LIBRARIES}
- ${CMAKE_JSONCPP_LIBRARIES}
- ${CMAKE_LIBUV_LIBRARIES}
- ${CMAKE_LIBRHASH_LIBRARIES}
- ${CMake_KWIML_LIBRARIES}
- ${CMAKE_THREAD_LIBS_INIT}
- )
- if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR MATCHES "sparc")
- # the atomic instructions are implemented using libatomic on some platforms,
- # so linking to that may be required
- check_library_exists(atomic __atomic_fetch_add_4 "" LIBATOMIC_NEEDED)
- if(LIBATOMIC_NEEDED)
- target_link_libraries(CMakeLib atomic)
- endif()
- endif()
- # On Apple we need CoreFoundation
- if(APPLE)
- target_link_libraries(CMakeLib "-framework CoreFoundation")
- endif()
- if(WIN32 AND NOT UNIX)
- # We need the rpcrt4 library on Windows.
- # We need the crypt32 library on Windows for crypto/cert APIs.
- target_link_libraries(CMakeLib rpcrt4 crypt32)
- endif()
- target_compile_definitions(CMakeLib PUBLIC ${CLANG_TIDY_DEFINITIONS})
- #
- # CTestLib
- #
- include_directories(
- "${CMake_SOURCE_DIR}/Source/CTest"
- ${CMAKE_XMLRPC_INCLUDES}
- ${CMAKE_CURL_INCLUDES}
- )
- #
- # Sources for CTestLib
- #
- set(CTEST_SRCS cmCTest.cxx
- CTest/cmProcess.cxx
- CTest/cmCTestBuildAndTestHandler.cxx
- CTest/cmCTestBuildCommand.cxx
- CTest/cmCTestBuildHandler.cxx
- CTest/cmCTestConfigureCommand.cxx
- CTest/cmCTestConfigureHandler.cxx
- CTest/cmCTestCoverageCommand.cxx
- CTest/cmCTestCoverageHandler.cxx
- CTest/cmCTestCurl.cxx
- CTest/cmParseMumpsCoverage.cxx
- CTest/cmParseCacheCoverage.cxx
- CTest/cmParseGTMCoverage.cxx
- CTest/cmParseJacocoCoverage.cxx
- CTest/cmParseBlanketJSCoverage.cxx
- CTest/cmParsePHPCoverage.cxx
- CTest/cmParseCoberturaCoverage.cxx
- CTest/cmParseDelphiCoverage.cxx
- CTest/cmCTestEmptyBinaryDirectoryCommand.cxx
- CTest/cmCTestGenericHandler.cxx
- CTest/cmCTestHandlerCommand.cxx
- CTest/cmCTestLaunch.cxx
- CTest/cmCTestMemCheckCommand.cxx
- CTest/cmCTestMemCheckHandler.cxx
- CTest/cmCTestMultiProcessHandler.cxx
- CTest/cmCTestReadCustomFilesCommand.cxx
- CTest/cmCTestRunScriptCommand.cxx
- CTest/cmCTestRunTest.cxx
- CTest/cmCTestScriptHandler.cxx
- CTest/cmCTestSleepCommand.cxx
- CTest/cmCTestStartCommand.cxx
- CTest/cmCTestSubmitCommand.cxx
- CTest/cmCTestSubmitHandler.cxx
- CTest/cmCTestTestCommand.cxx
- CTest/cmCTestTestHandler.cxx
- CTest/cmCTestUpdateCommand.cxx
- CTest/cmCTestUpdateHandler.cxx
- CTest/cmCTestUploadCommand.cxx
- CTest/cmCTestUploadHandler.cxx
- CTest/cmCTestVC.cxx
- CTest/cmCTestVC.h
- CTest/cmCTestGlobalVC.cxx
- CTest/cmCTestGlobalVC.h
- CTest/cmCTestCVS.cxx
- CTest/cmCTestCVS.h
- CTest/cmCTestSVN.cxx
- CTest/cmCTestSVN.h
- CTest/cmCTestBZR.cxx
- CTest/cmCTestBZR.h
- CTest/cmCTestGIT.cxx
- CTest/cmCTestGIT.h
- CTest/cmCTestHG.cxx
- CTest/cmCTestHG.h
- CTest/cmCTestP4.cxx
- CTest/cmCTestP4.h
- )
- # Build CTestLib
- add_library(CTestLib ${CTEST_SRCS})
- target_link_libraries(CTestLib CMakeLib ${CMAKE_CURL_LIBRARIES} ${CMAKE_XMLRPC_LIBRARIES})
- #
- # CPack
- #
- include_directories(
- "${CMake_SOURCE_DIR}/Source/CPack"
- )
- #
- # Sources for CPack
- #
- set(CPACK_SRCS
- CPack/cmCPackArchiveGenerator.cxx
- CPack/cmCPackComponentGroup.cxx
- CPack/cmCPackDebGenerator.cxx
- CPack/cmCPackExtGenerator.cxx
- CPack/cmCPackGeneratorFactory.cxx
- CPack/cmCPackGenerator.cxx
- CPack/cmCPackLog.cxx
- CPack/cmCPackNSISGenerator.cxx
- CPack/cmCPackNuGetGenerator.cxx
- CPack/cmCPackSTGZGenerator.cxx
- CPack/cmCPackTGZGenerator.cxx
- CPack/cmCPackTXZGenerator.cxx
- CPack/cmCPackTarBZip2Generator.cxx
- CPack/cmCPackTarCompressGenerator.cxx
- CPack/cmCPackZIPGenerator.cxx
- CPack/cmCPack7zGenerator.cxx
- )
- # CPack IFW generator
- set(CPACK_SRCS ${CPACK_SRCS}
- CPack/IFW/cmCPackIFWCommon.cxx
- CPack/IFW/cmCPackIFWCommon.h
- CPack/IFW/cmCPackIFWGenerator.cxx
- CPack/IFW/cmCPackIFWGenerator.h
- CPack/IFW/cmCPackIFWInstaller.cxx
- CPack/IFW/cmCPackIFWInstaller.h
- CPack/IFW/cmCPackIFWPackage.cxx
- CPack/IFW/cmCPackIFWPackage.h
- CPack/IFW/cmCPackIFWRepository.cxx
- CPack/IFW/cmCPackIFWRepository.h
- )
- if(CYGWIN)
- set(CPACK_SRCS ${CPACK_SRCS}
- CPack/cmCPackCygwinBinaryGenerator.cxx
- CPack/cmCPackCygwinSourceGenerator.cxx
- )
- endif()
- option(CPACK_ENABLE_FREEBSD_PKG "Add FreeBSD pkg(8) generator to CPack." OFF)
- if(UNIX)
- set(CPACK_SRCS ${CPACK_SRCS}
- CPack/cmCPackRPMGenerator.cxx
- )
- # Optionally, try to use pkg(8)
- if(CPACK_ENABLE_FREEBSD_PKG)
- # On UNIX, you may find FreeBSD's pkg(8) and attendant
- # library -- it can be used on FreeBSD, Dragonfly, NetBSD,
- # OpenBSD and also Linux and OSX. Look for the header and
- # the library; it's a warning on FreeBSD if they're not
- # found, and informational on other platforms.
- find_path(FREEBSD_PKG_INCLUDE_DIRS "pkg.h")
- if(FREEBSD_PKG_INCLUDE_DIRS)
- find_library(FREEBSD_PKG_LIBRARIES
- pkg
- DOC "FreeBSD pkg(8) library")
- if(FREEBSD_PKG_LIBRARIES)
- set(CPACK_SRCS ${CPACK_SRCS}
- CPack/cmCPackFreeBSDGenerator.cxx
- )
- endif()
- endif()
- if (NOT FREEBSD_PKG_INCLUDE_DIRS OR NOT FREEBSD_PKG_LIBRARIES)
- message(FATAL_ERROR "CPack needs libpkg(3) to produce FreeBSD packages natively.")
- endif()
- else()
- set(FREEBSD_PKG_INCLUDE_DIRS NOTFOUND)
- set(FREEBSD_PKG_LIBRARIES NOTFOUND)
- endif()
- endif()
- if(CYGWIN)
- find_package(LibUUID)
- endif()
- if(WIN32 OR (CYGWIN AND LibUUID_FOUND))
- set(CPACK_SRCS ${CPACK_SRCS}
- CPack/WiX/cmCMakeToWixPath.cxx
- CPack/WiX/cmCMakeToWixPath.h
- CPack/WiX/cmCPackWIXGenerator.cxx
- CPack/WiX/cmCPackWIXGenerator.h
- CPack/WiX/cmWIXAccessControlList.cxx
- CPack/WiX/cmWIXAccessControlList.h
- CPack/WiX/cmWIXDirectoriesSourceWriter.cxx
- CPack/WiX/cmWIXDirectoriesSourceWriter.h
- CPack/WiX/cmWIXFeaturesSourceWriter.cxx
- CPack/WiX/cmWIXFeaturesSourceWriter.h
- CPack/WiX/cmWIXFilesSourceWriter.cxx
- CPack/WiX/cmWIXFilesSourceWriter.h
- CPack/WiX/cmWIXPatch.cxx
- CPack/WiX/cmWIXPatch.h
- CPack/WiX/cmWIXPatchParser.cxx
- CPack/WiX/cmWIXPatchParser.h
- CPack/WiX/cmWIXRichTextFormatWriter.cxx
- CPack/WiX/cmWIXRichTextFormatWriter.h
- CPack/WiX/cmWIXShortcut.cxx
- CPack/WiX/cmWIXShortcut.h
- CPack/WiX/cmWIXSourceWriter.cxx
- CPack/WiX/cmWIXSourceWriter.h
- )
- endif()
- if(APPLE)
- set(CPACK_SRCS ${CPACK_SRCS}
- CPack/cmCPackBundleGenerator.cxx
- CPack/cmCPackDragNDropGenerator.cxx
- CPack/cmCPackOSXX11Generator.cxx
- CPack/cmCPackPKGGenerator.cxx
- CPack/cmCPackPackageMakerGenerator.cxx
- CPack/cmCPackProductBuildGenerator.cxx
- )
- endif()
- # Build CPackLib
- add_library(CPackLib ${CPACK_SRCS})
- target_link_libraries(CPackLib CMakeLib)
- if(APPLE)
- # Some compilers produce errors in the CoreServices framework headers.
- # Ideally such errors should be fixed by either the compiler vendor
- # or the framework source, but we try to workaround it and build anyway.
- # If it does not work, build with reduced functionality and warn.
- check_include_file("CoreServices/CoreServices.h" HAVE_CoreServices)
- if(HAVE_CoreServices)
- set_property(SOURCE CPack/cmCPackDragNDropGenerator.cxx PROPERTY COMPILE_DEFINITIONS HAVE_CoreServices)
- target_link_libraries(CPackLib "-framework CoreServices")
- else()
- message(WARNING "This compiler does not appear to support\n"
- " #include <CoreServices/CoreServices.h>\n"
- "Some CPack functionality may be limited.\n"
- "See CMakeFiles/CMakeError.log for details of the failure.")
- endif()
- endif()
- if(CYGWIN AND LibUUID_FOUND)
- target_link_libraries(CPackLib ${LibUUID_LIBRARIES})
- include_directories(CPackLib ${LibUUID_INCLUDE_DIRS})
- set_property(SOURCE CPack/cmCPackGeneratorFactory.cxx PROPERTY COMPILE_DEFINITIONS HAVE_LIBUUID)
- endif()
- if(CPACK_ENABLE_FREEBSD_PKG AND FREEBSD_PKG_INCLUDE_DIRS AND FREEBSD_PKG_LIBRARIES)
- target_link_libraries(CPackLib ${FREEBSD_PKG_LIBRARIES})
- include_directories(${FREEBSD_PKG_INCLUDE_DIRS})
- add_definitions(-DHAVE_FREEBSD_PKG)
- endif()
- if(APPLE)
- add_executable(cmakexbuild cmakexbuild.cxx)
- list(APPEND _tools cmakexbuild)
- target_link_libraries(cmakexbuild CMakeLib)
- add_executable(OSXScriptLauncher
- CPack/OSXScriptLauncher.cxx)
- target_link_libraries(OSXScriptLauncher cmsys)
- target_link_libraries(OSXScriptLauncher "-framework CoreFoundation")
- endif()
- # Build CMake executable
- add_executable(cmake cmakemain.cxx cmcmd.cxx cmcmd.h ${MANIFEST_FILE})
- list(APPEND _tools cmake)
- target_link_libraries(cmake CMakeLib)
- add_library(CMakeServerLib
- cmConnection.h cmConnection.cxx
- cmFileMonitor.cxx cmFileMonitor.h
- cmPipeConnection.cxx cmPipeConnection.h
- cmServer.cxx cmServer.h
- cmServerConnection.cxx cmServerConnection.h
- cmServerProtocol.cxx cmServerProtocol.h
- )
- target_link_libraries(CMakeServerLib CMakeLib)
- target_link_libraries(cmake CMakeServerLib)
- # Build CTest executable
- add_executable(ctest ctest.cxx ${MANIFEST_FILE})
- list(APPEND _tools ctest)
- target_link_libraries(ctest CTestLib)
- # Build CPack executable
- add_executable(cpack CPack/cpack.cxx ${MANIFEST_FILE})
- list(APPEND _tools cpack)
- target_link_libraries(cpack CPackLib)
- # Curses GUI
- if(BUILD_CursesDialog)
- include(${CMake_SOURCE_DIR}/Source/CursesDialog/CMakeLists.txt)
- endif()
- # Qt GUI
- option(BUILD_QtDialog "Build Qt dialog for CMake" FALSE)
- if(BUILD_QtDialog)
- add_subdirectory(QtDialog)
- endif()
- include (${CMake_BINARY_DIR}/Source/LocalUserOptions.cmake OPTIONAL)
- include (${CMake_SOURCE_DIR}/Source/LocalUserOptions.cmake OPTIONAL)
- if(WIN32)
- # Add Windows executable version information.
- configure_file("CMakeVersion.rc.in" "CMakeVersion.rc" @ONLY)
- # We use a separate object library for this to work around a limitation of
- # MinGW's windres tool with spaces in the path to the include directories.
- add_library(CMakeVersion OBJECT "${CMAKE_CURRENT_BINARY_DIR}/CMakeVersion.rc")
- set_property(TARGET CMakeVersion PROPERTY INCLUDE_DIRECTORIES "")
- foreach(_tool ${_tools})
- target_sources(${_tool} PRIVATE $<TARGET_OBJECTS:CMakeVersion>)
- endforeach()
- endif()
- # Install tools
- foreach(_tool ${_tools})
- CMake_OPTIONAL_COMPONENT(${_tool})
- install(TARGETS ${_tool} DESTINATION ${CMAKE_BIN_DIR} ${COMPONENT})
- endforeach()
- install(FILES cmCPluginAPI.h DESTINATION ${CMAKE_DATA_DIR}/include)
- # Unset temporary variables
- unset(_tools)
|