2016-09-27 19:01:08 +00:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
include(CheckIncludeFile)
|
2008-02-27 21:26:35 +00:00
|
|
|
# Check if we can build support for ELF parsing.
|
2013-06-21 09:13:35 +00:00
|
|
|
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()
|
2012-08-13 17:47:32 +00:00
|
|
|
if(HAVE_ELF_H)
|
|
|
|
set(CMAKE_USE_ELF_PARSER 1)
|
2014-03-03 14:47:08 +00:00
|
|
|
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()
|
2012-08-13 17:50:14 +00:00
|
|
|
else()
|
2012-08-13 17:47:32 +00:00
|
|
|
set(CMAKE_USE_ELF_PARSER)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2008-02-27 21:26:35 +00:00
|
|
|
|
2014-12-19 19:30:22 +00:00
|
|
|
if(APPLE)
|
|
|
|
set(CMAKE_USE_MACH_PARSER 1)
|
|
|
|
endif()
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMake_BIN_DIR})
|
2009-12-08 16:44:28 +00:00
|
|
|
|
2014-03-14 14:47:37 +00:00
|
|
|
if(WIN32)
|
2016-08-17 14:43:26 +00:00
|
|
|
# ensure Unicode friendly APIs are used on Windows
|
2014-03-14 14:47:37 +00:00
|
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
2016-08-17 14:43:26 +00:00
|
|
|
|
|
|
|
# minimize windows.h content
|
|
|
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
2014-03-14 14:47:37 +00:00
|
|
|
endif()
|
|
|
|
|
2016-08-04 10:01:42 +00:00
|
|
|
# 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()
|
|
|
|
|
2005-03-04 16:38:34 +00:00
|
|
|
# configure the .h file
|
2012-08-13 17:47:32 +00:00
|
|
|
configure_file(
|
2005-03-04 19:27:32 +00:00
|
|
|
"${CMake_SOURCE_DIR}/Source/cmConfigure.cmake.h.in"
|
|
|
|
"${CMake_BINARY_DIR}/Source/cmConfigure.h"
|
|
|
|
)
|
2012-08-13 17:47:32 +00:00
|
|
|
configure_file(
|
2009-03-05 20:17:07 +00:00
|
|
|
"${CMake_SOURCE_DIR}/Source/cmVersionConfig.h.in"
|
|
|
|
"${CMake_BINARY_DIR}/Source/cmVersionConfig.h"
|
|
|
|
)
|
2012-08-13 17:47:32 +00:00
|
|
|
configure_file(
|
2006-01-02 04:31:17 +00:00
|
|
|
"${CMake_SOURCE_DIR}/Source/CPack/cmCPackConfigure.h.in"
|
|
|
|
"${CMake_BINARY_DIR}/Source/CPack/cmCPackConfigure.h"
|
|
|
|
)
|
2005-03-04 16:38:34 +00:00
|
|
|
|
2013-11-07 20:30:59 +00:00
|
|
|
# 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
|
|
|
|
)
|
|
|
|
|
2006-04-21 18:26:11 +00:00
|
|
|
# add the include path to find the .h
|
2012-08-13 17:47:32 +00:00
|
|
|
include_directories(
|
2005-03-04 19:27:32 +00:00
|
|
|
"${CMake_BINARY_DIR}/Source"
|
|
|
|
"${CMake_SOURCE_DIR}/Source"
|
2017-04-28 18:26:55 +00:00
|
|
|
"${CMake_SOURCE_DIR}/Source/LexerParser"
|
2005-03-16 17:54:35 +00:00
|
|
|
${CMAKE_ZLIB_INCLUDES}
|
|
|
|
${CMAKE_EXPAT_INCLUDES}
|
2005-12-28 21:30:28 +00:00
|
|
|
${CMAKE_TAR_INCLUDES}
|
2006-08-21 16:37:40 +00:00
|
|
|
${CMAKE_COMPRESS_INCLUDES}
|
2014-03-03 14:47:08 +00:00
|
|
|
${CMake_HAIKU_INCLUDE_DIRS}
|
2005-03-04 19:27:32 +00:00
|
|
|
)
|
2005-03-04 16:38:34 +00:00
|
|
|
|
|
|
|
# let cmake know it is supposed to use it
|
2012-08-13 17:47:32 +00:00
|
|
|
add_definitions(-DCMAKE_BUILD_WITH_CMAKE)
|
2005-03-04 16:38:34 +00:00
|
|
|
|
2008-02-27 21:26:35 +00:00
|
|
|
# Check if we can build the ELF parser.
|
2012-08-13 17:47:32 +00:00
|
|
|
if(CMAKE_USE_ELF_PARSER)
|
|
|
|
set(ELF_SRCS cmELF.h cmELF.cxx)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2008-02-27 21:26:35 +00:00
|
|
|
|
2014-12-19 19:30:22 +00:00
|
|
|
# Check if we can build the Mach-O parser.
|
|
|
|
if(CMAKE_USE_MACH_PARSER)
|
|
|
|
set(MACH_SRCS cmMachO.h cmMachO.cxx)
|
|
|
|
endif()
|
|
|
|
|
2005-03-04 16:38:34 +00:00
|
|
|
#
|
|
|
|
# Sources for CMakeLib
|
|
|
|
#
|
2012-08-13 17:47:32 +00:00
|
|
|
set(SRCS
|
2017-04-28 18:26:55 +00:00
|
|
|
# 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
|
|
|
|
|
2010-08-06 15:38:05 +00:00
|
|
|
cmArchiveWrite.cxx
|
2016-09-01 11:08:18 +00:00
|
|
|
cmBase32.cxx
|
2005-01-18 18:41:23 +00:00
|
|
|
cmCacheManager.cxx
|
|
|
|
cmCacheManager.h
|
2015-04-09 18:56:43 +00:00
|
|
|
cmCLocaleEnvironmentScope.h
|
|
|
|
cmCLocaleEnvironmentScope.cxx
|
2005-06-13 15:00:29 +00:00
|
|
|
cmCommandArgumentParserHelper.cxx
|
2015-07-07 20:37:56 +00:00
|
|
|
cmCommonTargetGenerator.cxx
|
|
|
|
cmCommonTargetGenerator.h
|
2008-02-07 21:14:05 +00:00
|
|
|
cmComputeComponentGraph.cxx
|
|
|
|
cmComputeComponentGraph.h
|
2008-01-27 18:42:49 +00:00
|
|
|
cmComputeLinkDepends.cxx
|
|
|
|
cmComputeLinkDepends.h
|
2008-01-22 14:13:04 +00:00
|
|
|
cmComputeLinkInformation.cxx
|
|
|
|
cmComputeLinkInformation.h
|
2008-02-06 04:10:41 +00:00
|
|
|
cmComputeTargetDepends.h
|
|
|
|
cmComputeTargetDepends.cxx
|
2014-05-15 17:12:40 +00:00
|
|
|
cmCPackPropertiesGenerator.h
|
|
|
|
cmCPackPropertiesGenerator.cxx
|
2011-11-16 00:37:38 +00:00
|
|
|
cmCryptoHash.cxx
|
|
|
|
cmCryptoHash.h
|
2015-01-22 15:15:31 +00:00
|
|
|
cmCurl.cxx
|
|
|
|
cmCurl.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmCustomCommand.cxx
|
|
|
|
cmCustomCommand.h
|
2010-12-07 21:23:38 +00:00
|
|
|
cmCustomCommandGenerator.cxx
|
|
|
|
cmCustomCommandGenerator.h
|
2009-07-22 18:22:45 +00:00
|
|
|
cmDefinitions.cxx
|
|
|
|
cmDefinitions.h
|
2005-01-28 22:14:49 +00:00
|
|
|
cmDepends.cxx
|
|
|
|
cmDepends.h
|
|
|
|
cmDependsC.cxx
|
|
|
|
cmDependsC.h
|
|
|
|
cmDependsFortran.cxx
|
|
|
|
cmDependsFortran.h
|
2005-03-01 17:21:34 +00:00
|
|
|
cmDependsJava.cxx
|
|
|
|
cmDependsJava.h
|
2005-01-28 22:14:49 +00:00
|
|
|
cmDependsJavaParserHelper.cxx
|
|
|
|
cmDependsJavaParserHelper.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmDocumentation.cxx
|
2007-09-19 13:05:28 +00:00
|
|
|
cmDocumentationFormatter.cxx
|
2007-10-22 16:49:09 +00:00
|
|
|
cmDocumentationSection.cxx
|
2005-01-18 18:41:23 +00:00
|
|
|
cmDynamicLoader.cxx
|
|
|
|
cmDynamicLoader.h
|
2008-02-27 21:26:35 +00:00
|
|
|
${ELF_SRCS}
|
2005-10-17 20:42:47 +00:00
|
|
|
cmExprParserHelper.cxx
|
2016-07-12 17:26:55 +00:00
|
|
|
cmExportBuildAndroidMKGenerator.h
|
|
|
|
cmExportBuildAndroidMKGenerator.cxx
|
2008-01-28 13:38:36 +00:00
|
|
|
cmExportBuildFileGenerator.h
|
|
|
|
cmExportBuildFileGenerator.cxx
|
|
|
|
cmExportFileGenerator.h
|
|
|
|
cmExportFileGenerator.cxx
|
2016-07-12 17:26:55 +00:00
|
|
|
cmExportInstallAndroidMKGenerator.h
|
|
|
|
cmExportInstallAndroidMKGenerator.cxx
|
2008-01-28 13:38:36 +00:00
|
|
|
cmExportInstallFileGenerator.h
|
|
|
|
cmExportInstallFileGenerator.cxx
|
2013-02-07 16:36:29 +00:00
|
|
|
cmExportTryCompileFileGenerator.h
|
|
|
|
cmExportTryCompileFileGenerator.cxx
|
2012-02-27 06:09:40 +00:00
|
|
|
cmExportSet.h
|
|
|
|
cmExportSet.cxx
|
2012-02-29 22:02:56 +00:00
|
|
|
cmExportSetMap.h
|
|
|
|
cmExportSetMap.cxx
|
2015-04-12 18:09:31 +00:00
|
|
|
cmExternalMakefileProjectGenerator.cxx
|
|
|
|
cmExternalMakefileProjectGenerator.h
|
2010-01-13 17:58:08 +00:00
|
|
|
cmExtraCodeBlocksGenerator.cxx
|
|
|
|
cmExtraCodeBlocksGenerator.h
|
2014-01-10 07:20:11 +00:00
|
|
|
cmExtraCodeLiteGenerator.cxx
|
|
|
|
cmExtraCodeLiteGenerator.h
|
2007-08-01 13:18:50 +00:00
|
|
|
cmExtraEclipseCDT4Generator.cxx
|
|
|
|
cmExtraEclipseCDT4Generator.h
|
2013-11-16 14:41:32 +00:00
|
|
|
cmExtraKateGenerator.cxx
|
|
|
|
cmExtraKateGenerator.h
|
2012-10-10 22:01:48 +00:00
|
|
|
cmExtraSublimeTextGenerator.cxx
|
|
|
|
cmExtraSublimeTextGenerator.h
|
2014-11-25 22:49:25 +00:00
|
|
|
cmFileLock.cxx
|
|
|
|
cmFileLock.h
|
|
|
|
cmFileLockPool.cxx
|
|
|
|
cmFileLockPool.h
|
|
|
|
cmFileLockResult.cxx
|
|
|
|
cmFileLockResult.h
|
2016-12-01 08:24:48 +00:00
|
|
|
cmFilePathChecksum.cxx
|
|
|
|
cmFilePathChecksum.h
|
2006-12-04 16:05:23 +00:00
|
|
|
cmFileTimeComparison.cxx
|
|
|
|
cmFileTimeComparison.h
|
2015-07-22 18:03:00 +00:00
|
|
|
cmFortranParserImpl.cxx
|
2005-01-18 18:41:23 +00:00
|
|
|
cmGeneratedFileStream.cxx
|
2015-03-04 22:53:22 +00:00
|
|
|
cmGeneratorExpressionContext.cxx
|
|
|
|
cmGeneratorExpressionContext.h
|
2012-09-18 11:42:23 +00:00
|
|
|
cmGeneratorExpressionDAGChecker.cxx
|
|
|
|
cmGeneratorExpressionDAGChecker.h
|
2015-04-12 18:09:31 +00:00
|
|
|
cmGeneratorExpressionEvaluationFile.cxx
|
|
|
|
cmGeneratorExpressionEvaluationFile.h
|
2012-09-11 17:53:38 +00:00
|
|
|
cmGeneratorExpressionEvaluator.cxx
|
|
|
|
cmGeneratorExpressionEvaluator.h
|
|
|
|
cmGeneratorExpressionLexer.cxx
|
|
|
|
cmGeneratorExpressionLexer.h
|
2015-02-22 22:32:11 +00:00
|
|
|
cmGeneratorExpressionNode.cxx
|
|
|
|
cmGeneratorExpressionNode.h
|
2012-09-11 17:53:38 +00:00
|
|
|
cmGeneratorExpressionParser.cxx
|
|
|
|
cmGeneratorExpressionParser.h
|
2009-08-11 13:54:56 +00:00
|
|
|
cmGeneratorExpression.cxx
|
|
|
|
cmGeneratorExpression.h
|
2012-03-07 16:44:48 +00:00
|
|
|
cmGeneratorTarget.cxx
|
|
|
|
cmGeneratorTarget.h
|
2015-07-07 20:37:56 +00:00
|
|
|
cmGlobalCommonGenerator.cxx
|
|
|
|
cmGlobalCommonGenerator.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmGlobalGenerator.cxx
|
|
|
|
cmGlobalGenerator.h
|
2012-11-19 14:48:33 +00:00
|
|
|
cmGlobalGeneratorFactory.h
|
2005-05-12 14:49:56 +00:00
|
|
|
cmGlobalUnixMakefileGenerator3.cxx
|
|
|
|
cmGlobalUnixMakefileGenerator3.h
|
2008-02-07 21:14:05 +00:00
|
|
|
cmGraphAdjacencyList.h
|
2010-11-09 20:37:51 +00:00
|
|
|
cmGraphVizWriter.cxx
|
|
|
|
cmGraphVizWriter.h
|
2006-02-19 20:25:27 +00:00
|
|
|
cmInstallGenerator.h
|
|
|
|
cmInstallGenerator.cxx
|
2007-06-19 17:10:21 +00:00
|
|
|
cmInstallExportGenerator.cxx
|
2014-05-15 17:12:40 +00:00
|
|
|
cmInstalledFile.h
|
|
|
|
cmInstalledFile.cxx
|
2006-02-19 23:47:13 +00:00
|
|
|
cmInstallFilesGenerator.h
|
|
|
|
cmInstallFilesGenerator.cxx
|
2006-02-19 20:25:27 +00:00
|
|
|
cmInstallScriptGenerator.h
|
|
|
|
cmInstallScriptGenerator.cxx
|
|
|
|
cmInstallTargetGenerator.h
|
|
|
|
cmInstallTargetGenerator.cxx
|
2006-08-17 18:48:54 +00:00
|
|
|
cmInstallDirectoryGenerator.h
|
|
|
|
cmInstallDirectoryGenerator.cxx
|
2015-05-22 22:04:09 +00:00
|
|
|
cmLinkedTree.h
|
2015-08-04 17:49:49 +00:00
|
|
|
cmLinkItem.h
|
2016-10-08 10:21:36 +00:00
|
|
|
cmLinkLineComputer.cxx
|
|
|
|
cmLinkLineComputer.h
|
2016-10-13 13:08:44 +00:00
|
|
|
cmLinkLineDeviceComputer.cxx
|
|
|
|
cmLinkLineDeviceComputer.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmListFileCache.cxx
|
|
|
|
cmListFileCache.h
|
2015-07-07 20:37:56 +00:00
|
|
|
cmLocalCommonGenerator.cxx
|
|
|
|
cmLocalCommonGenerator.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmLocalGenerator.cxx
|
|
|
|
cmLocalGenerator.h
|
2016-10-09 08:34:50 +00:00
|
|
|
cmRulePlaceholderExpander.cxx
|
|
|
|
cmRulePlaceholderExpander.h
|
2005-05-12 14:49:56 +00:00
|
|
|
cmLocalUnixMakefileGenerator3.cxx
|
2015-02-06 18:23:07 +00:00
|
|
|
cmLocale.h
|
2014-12-19 19:30:22 +00:00
|
|
|
${MACH_SRCS}
|
2005-01-18 18:41:23 +00:00
|
|
|
cmMakefile.cxx
|
|
|
|
cmMakefile.h
|
2006-02-15 15:34:11 +00:00
|
|
|
cmMakefileTargetGenerator.cxx
|
|
|
|
cmMakefileExecutableTargetGenerator.cxx
|
|
|
|
cmMakefileLibraryTargetGenerator.cxx
|
|
|
|
cmMakefileUtilityTargetGenerator.cxx
|
2016-01-28 21:10:27 +00:00
|
|
|
cmMessenger.cxx
|
|
|
|
cmMessenger.h
|
2016-10-08 10:21:36 +00:00
|
|
|
cmMSVC60LinkLineComputer.cxx
|
|
|
|
cmMSVC60LinkLineComputer.h
|
2012-07-07 17:54:16 +00:00
|
|
|
cmOSXBundleGenerator.cxx
|
|
|
|
cmOSXBundleGenerator.h
|
2015-04-12 11:15:51 +00:00
|
|
|
cmOutputConverter.cxx
|
|
|
|
cmOutputConverter.h
|
2011-11-20 13:04:11 +00:00
|
|
|
cmNewLineStyle.h
|
|
|
|
cmNewLineStyle.cxx
|
2008-02-21 16:41:11 +00:00
|
|
|
cmOrderDirectories.cxx
|
|
|
|
cmOrderDirectories.h
|
2008-03-01 20:20:35 +00:00
|
|
|
cmPolicies.h
|
|
|
|
cmPolicies.cxx
|
2016-11-01 18:04:20 +00:00
|
|
|
cmProcessOutput.cxx
|
|
|
|
cmProcessOutput.h
|
2009-02-24 15:40:18 +00:00
|
|
|
cmProcessTools.cxx
|
|
|
|
cmProcessTools.h
|
2006-12-04 16:05:23 +00:00
|
|
|
cmProperty.cxx
|
|
|
|
cmProperty.h
|
|
|
|
cmPropertyDefinition.cxx
|
|
|
|
cmPropertyDefinition.h
|
2006-12-07 14:45:32 +00:00
|
|
|
cmPropertyDefinitionMap.cxx
|
|
|
|
cmPropertyDefinitionMap.h
|
|
|
|
cmPropertyMap.cxx
|
|
|
|
cmPropertyMap.h
|
2017-02-28 11:08:26 +00:00
|
|
|
cmQtAutoGeneratorCommon.cxx
|
|
|
|
cmQtAutoGeneratorCommon.h
|
2015-09-26 17:05:00 +00:00
|
|
|
cmQtAutoGeneratorInitializer.cxx
|
|
|
|
cmQtAutoGeneratorInitializer.h
|
2013-09-24 18:07:45 +00:00
|
|
|
cmQtAutoGenerators.cxx
|
|
|
|
cmQtAutoGenerators.h
|
2013-10-01 00:30:57 +00:00
|
|
|
cmRST.cxx
|
|
|
|
cmRST.h
|
2009-03-16 14:39:56 +00:00
|
|
|
cmScriptGenerator.h
|
|
|
|
cmScriptGenerator.cxx
|
2005-01-18 18:41:23 +00:00
|
|
|
cmSourceFile.cxx
|
|
|
|
cmSourceFile.h
|
2007-06-18 15:59:23 +00:00
|
|
|
cmSourceFileLocation.cxx
|
|
|
|
cmSourceFileLocation.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmSourceGroup.cxx
|
|
|
|
cmSourceGroup.h
|
2015-04-04 19:20:12 +00:00
|
|
|
cmState.cxx
|
|
|
|
cmState.h
|
2016-10-18 19:28:49 +00:00
|
|
|
cmStateDirectory.cxx
|
|
|
|
cmStateDirectory.h
|
|
|
|
cmStateSnapshot.cxx
|
|
|
|
cmStateSnapshot.h
|
2016-10-18 19:28:48 +00:00
|
|
|
cmStateTypes.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmSystemTools.cxx
|
|
|
|
cmSystemTools.h
|
|
|
|
cmTarget.cxx
|
|
|
|
cmTarget.h
|
2016-10-12 22:18:24 +00:00
|
|
|
cmTargetPropertyComputer.cxx
|
|
|
|
cmTargetPropertyComputer.h
|
2012-02-26 20:05:17 +00:00
|
|
|
cmTargetExport.h
|
2005-04-24 19:59:51 +00:00
|
|
|
cmTest.cxx
|
|
|
|
cmTest.h
|
2009-03-16 14:40:46 +00:00
|
|
|
cmTestGenerator.cxx
|
|
|
|
cmTestGenerator.h
|
2014-08-25 20:44:06 +00:00
|
|
|
cmUuid.cxx
|
2005-01-18 18:41:23 +00:00
|
|
|
cmVariableWatch.cxx
|
|
|
|
cmVariableWatch.h
|
|
|
|
cmVersion.cxx
|
|
|
|
cmVersion.h
|
2017-03-01 18:40:22 +00:00
|
|
|
cmWorkingDirectory.cxx
|
|
|
|
cmWorkingDirectory.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmXMLParser.cxx
|
|
|
|
cmXMLParser.h
|
2009-02-05 21:31:37 +00:00
|
|
|
cmXMLSafe.cxx
|
|
|
|
cmXMLSafe.h
|
2015-05-23 21:04:50 +00:00
|
|
|
cmXMLWriter.cxx
|
|
|
|
cmXMLWriter.h
|
2005-01-18 18:41:23 +00:00
|
|
|
cmake.cxx
|
|
|
|
cmake.h
|
2009-12-08 20:43:55 +00:00
|
|
|
|
2016-10-19 22:29:18 +00:00
|
|
|
cmCommand.cxx
|
|
|
|
cmCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmCommands.cxx
|
|
|
|
cmCommands.h
|
|
|
|
cmAddCompileOptionsCommand.cxx
|
|
|
|
cmAddCompileOptionsCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
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
|
2016-10-19 21:17:10 +00:00
|
|
|
cmAuxSourceDirectoryCommand.cxx
|
|
|
|
cmAuxSourceDirectoryCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
cmBreakCommand.cxx
|
|
|
|
cmBreakCommand.h
|
|
|
|
cmBuildCommand.cxx
|
|
|
|
cmBuildCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmBuildNameCommand.cxx
|
|
|
|
cmBuildNameCommand.h
|
|
|
|
cmCMakeHostSystemInformationCommand.cxx
|
|
|
|
cmCMakeHostSystemInformationCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
cmCMakeMinimumRequired.cxx
|
|
|
|
cmCMakeMinimumRequired.h
|
|
|
|
cmCMakePolicyCommand.cxx
|
|
|
|
cmCMakePolicyCommand.h
|
|
|
|
cmCommandArgumentsHelper.cxx
|
|
|
|
cmCommandArgumentsHelper.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmConditionEvaluator.cxx
|
|
|
|
cmConditionEvaluator.h
|
2016-10-19 19:59:14 +00:00
|
|
|
cmConfigureFileCommand.cxx
|
|
|
|
cmConfigureFileCommand.h
|
|
|
|
cmContinueCommand.cxx
|
|
|
|
cmContinueCommand.h
|
|
|
|
cmCoreTryCompile.cxx
|
|
|
|
cmCoreTryCompile.h
|
|
|
|
cmCreateTestSourceList.cxx
|
|
|
|
cmCreateTestSourceList.h
|
|
|
|
cmDefinePropertyCommand.cxx
|
|
|
|
cmDefinePropertyCommand.h
|
2016-12-25 23:34:44 +00:00
|
|
|
cmDisallowedCommand.cxx
|
|
|
|
cmDisallowedCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
cmEnableLanguageCommand.cxx
|
|
|
|
cmEnableLanguageCommand.h
|
|
|
|
cmEnableTestingCommand.cxx
|
|
|
|
cmEnableTestingCommand.h
|
|
|
|
cmExecProgramCommand.cxx
|
|
|
|
cmExecProgramCommand.h
|
|
|
|
cmExecuteProcessCommand.cxx
|
|
|
|
cmExecuteProcessCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmExpandedCommandArgument.cxx
|
|
|
|
cmExpandedCommandArgument.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmExportCommand.cxx
|
|
|
|
cmExportCommand.h
|
|
|
|
cmExportLibraryDependenciesCommand.cxx
|
|
|
|
cmExportLibraryDependenciesCommand.h
|
|
|
|
cmFLTKWrapUICommand.cxx
|
|
|
|
cmFLTKWrapUICommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
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
|
2016-10-19 20:30:58 +00:00
|
|
|
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
|
2016-10-19 21:17:10 +00:00
|
|
|
cmIncludeExternalMSProjectCommand.cxx
|
|
|
|
cmIncludeExternalMSProjectCommand.h
|
2017-06-22 07:53:42 +00:00
|
|
|
cmIncludeGuardCommand.cxx
|
|
|
|
cmIncludeGuardCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmIncludeRegularExpressionCommand.cxx
|
|
|
|
cmIncludeRegularExpressionCommand.h
|
|
|
|
cmInstallCommand.cxx
|
|
|
|
cmInstallCommand.h
|
|
|
|
cmInstallCommandArguments.cxx
|
|
|
|
cmInstallCommandArguments.h
|
|
|
|
cmInstallFilesCommand.cxx
|
|
|
|
cmInstallFilesCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmInstallProgramsCommand.cxx
|
|
|
|
cmInstallProgramsCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmInstallTargetsCommand.cxx
|
|
|
|
cmInstallTargetsCommand.h
|
|
|
|
cmLinkDirectoriesCommand.cxx
|
|
|
|
cmLinkDirectoriesCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmLinkLibrariesCommand.cxx
|
|
|
|
cmLinkLibrariesCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmListCommand.cxx
|
|
|
|
cmListCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmLoadCacheCommand.cxx
|
|
|
|
cmLoadCacheCommand.h
|
|
|
|
cmLoadCommandCommand.cxx
|
|
|
|
cmLoadCommandCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmMacroCommand.cxx
|
|
|
|
cmMacroCommand.h
|
|
|
|
cmMakeDirectoryCommand.cxx
|
|
|
|
cmMakeDirectoryCommand.h
|
|
|
|
cmMarkAsAdvancedCommand.cxx
|
|
|
|
cmMarkAsAdvancedCommand.h
|
|
|
|
cmMathCommand.cxx
|
|
|
|
cmMathCommand.h
|
|
|
|
cmMessageCommand.cxx
|
|
|
|
cmMessageCommand.h
|
|
|
|
cmOptionCommand.cxx
|
|
|
|
cmOptionCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmOutputRequiredFilesCommand.cxx
|
|
|
|
cmOutputRequiredFilesCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
cmParseArgumentsCommand.cxx
|
|
|
|
cmParseArgumentsCommand.h
|
|
|
|
cmPathLabel.cxx
|
|
|
|
cmPathLabel.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmProjectCommand.cxx
|
|
|
|
cmProjectCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmQTWrapCPPCommand.cxx
|
|
|
|
cmQTWrapCPPCommand.h
|
|
|
|
cmQTWrapUICommand.cxx
|
|
|
|
cmQTWrapUICommand.h
|
|
|
|
cmRemoveCommand.cxx
|
|
|
|
cmRemoveCommand.h
|
|
|
|
cmRemoveDefinitionsCommand.cxx
|
|
|
|
cmRemoveDefinitionsCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmReturnCommand.cxx
|
|
|
|
cmReturnCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
cmSearchPath.cxx
|
|
|
|
cmSearchPath.h
|
2016-10-19 20:30:58 +00:00
|
|
|
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
|
2016-10-19 21:17:10 +00:00
|
|
|
cmSourceGroupCommand.cxx
|
|
|
|
cmSourceGroupCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmStringCommand.cxx
|
|
|
|
cmStringCommand.h
|
|
|
|
cmSubdirCommand.cxx
|
|
|
|
cmSubdirCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmSubdirDependsCommand.cxx
|
|
|
|
cmSubdirDependsCommand.h
|
|
|
|
cmTargetCompileDefinitionsCommand.cxx
|
|
|
|
cmTargetCompileDefinitionsCommand.h
|
|
|
|
cmTargetCompileFeaturesCommand.cxx
|
|
|
|
cmTargetCompileFeaturesCommand.h
|
|
|
|
cmTargetCompileOptionsCommand.cxx
|
|
|
|
cmTargetCompileOptionsCommand.h
|
|
|
|
cmTargetIncludeDirectoriesCommand.cxx
|
|
|
|
cmTargetIncludeDirectoriesCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmTargetLinkLibrariesCommand.cxx
|
|
|
|
cmTargetLinkLibrariesCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmTargetPropCommandBase.cxx
|
|
|
|
cmTargetPropCommandBase.h
|
|
|
|
cmTargetSourcesCommand.cxx
|
|
|
|
cmTargetSourcesCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmTimestamp.cxx
|
|
|
|
cmTimestamp.h
|
|
|
|
cmTryCompileCommand.cxx
|
|
|
|
cmTryCompileCommand.h
|
|
|
|
cmTryRunCommand.cxx
|
|
|
|
cmTryRunCommand.h
|
2016-11-27 19:38:57 +00:00
|
|
|
cmUnexpectedCommand.cxx
|
|
|
|
cmUnexpectedCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmUnsetCommand.cxx
|
|
|
|
cmUnsetCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmUseMangledMesaCommand.cxx
|
|
|
|
cmUseMangledMesaCommand.h
|
|
|
|
cmUtilitySourceCommand.cxx
|
|
|
|
cmUtilitySourceCommand.h
|
|
|
|
cmVariableRequiresCommand.cxx
|
|
|
|
cmVariableRequiresCommand.h
|
|
|
|
cmVariableWatchCommand.cxx
|
|
|
|
cmVariableWatchCommand.h
|
2016-10-19 20:30:58 +00:00
|
|
|
cmWhileCommand.cxx
|
|
|
|
cmWhileCommand.h
|
2016-10-19 21:17:10 +00:00
|
|
|
cmWriteFileCommand.cxx
|
|
|
|
cmWriteFileCommand.h
|
2016-10-19 19:59:14 +00:00
|
|
|
|
2016-06-28 14:17:52 +00:00
|
|
|
cm_auto_ptr.hxx
|
2015-01-14 18:22:29 +00:00
|
|
|
cm_get_date.h
|
|
|
|
cm_get_date.c
|
2009-12-08 20:43:55 +00:00
|
|
|
cm_utf8.h
|
|
|
|
cm_utf8.c
|
2016-10-05 12:56:52 +00:00
|
|
|
cm_codecvt.hxx
|
|
|
|
cm_codecvt.cxx
|
2005-01-18 18:41:23 +00:00
|
|
|
)
|
2001-06-12 17:30:13 +00:00
|
|
|
|
2016-11-01 18:04:20 +00:00
|
|
|
SET_PROPERTY(SOURCE cmProcessOutput.cxx APPEND PROPERTY COMPILE_DEFINITIONS
|
|
|
|
KWSYS_ENCODING_DEFAULT_CODEPAGE=${KWSYS_ENCODING_DEFAULT_CODEPAGE})
|
|
|
|
|
2004-10-11 15:32:14 +00:00
|
|
|
# Kdevelop only works on UNIX and not windows
|
2012-08-13 17:47:32 +00:00
|
|
|
if(UNIX)
|
|
|
|
set(SRCS ${SRCS} cmGlobalKdevelopGenerator.cxx)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2007-07-18 14:19:33 +00:00
|
|
|
|
2011-05-27 22:12:14 +00:00
|
|
|
# Xcode only works on Apple
|
2012-08-13 17:47:32 +00:00
|
|
|
if(APPLE)
|
|
|
|
set(SRCS ${SRCS}
|
2005-03-14 18:23:14 +00:00
|
|
|
cmXCodeObject.cxx
|
2005-09-02 20:29:32 +00:00
|
|
|
cmXCode21Object.cxx
|
2017-01-18 14:20:09 +00:00
|
|
|
cmXCodeScheme.cxx
|
2005-03-14 18:23:14 +00:00
|
|
|
cmGlobalXCodeGenerator.cxx
|
2005-07-19 20:40:44 +00:00
|
|
|
cmGlobalXCodeGenerator.h
|
2005-03-14 18:23:14 +00:00
|
|
|
cmLocalXCodeGenerator.cxx
|
|
|
|
cmLocalXCodeGenerator.h)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2004-10-11 15:32:14 +00:00
|
|
|
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if (WIN32)
|
|
|
|
set(SRCS ${SRCS}
|
2007-11-16 12:01:58 +00:00
|
|
|
cmCallVisualStudioMacro.cxx
|
|
|
|
cmCallVisualStudioMacro.h
|
2015-06-19 20:12:43 +00:00
|
|
|
bindexplib.cxx
|
2007-11-16 12:01:58 +00:00
|
|
|
)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(NOT UNIX)
|
|
|
|
set(SRCS ${SRCS}
|
2003-08-21 20:22:23 +00:00
|
|
|
cmGlobalBorlandMakefileGenerator.cxx
|
2006-02-01 00:34:57 +00:00
|
|
|
cmGlobalBorlandMakefileGenerator.h
|
2005-12-22 21:42:36 +00:00
|
|
|
cmGlobalMSYSMakefileGenerator.cxx
|
|
|
|
cmGlobalMinGWMakefileGenerator.cxx
|
2006-02-01 00:34:57 +00:00
|
|
|
cmGlobalNMakeMakefileGenerator.cxx
|
2003-08-21 20:22:23 +00:00
|
|
|
cmGlobalNMakeMakefileGenerator.h
|
2009-11-05 20:00:15 +00:00
|
|
|
cmGlobalJOMMakefileGenerator.cxx
|
|
|
|
cmGlobalJOMMakefileGenerator.h
|
2006-02-01 00:34:57 +00:00
|
|
|
cmGlobalVisualStudio71Generator.cxx
|
|
|
|
cmGlobalVisualStudio71Generator.h
|
|
|
|
cmGlobalVisualStudio7Generator.cxx
|
|
|
|
cmGlobalVisualStudio7Generator.h
|
|
|
|
cmGlobalVisualStudio8Generator.cxx
|
|
|
|
cmGlobalVisualStudio8Generator.h
|
2007-09-17 19:21:47 +00:00
|
|
|
cmGlobalVisualStudio9Generator.cxx
|
|
|
|
cmGlobalVisualStudio9Generator.h
|
2009-06-25 20:41:57 +00:00
|
|
|
cmVisualStudioGeneratorOptions.h
|
|
|
|
cmVisualStudioGeneratorOptions.cxx
|
|
|
|
cmVisualStudio10TargetGenerator.h
|
|
|
|
cmVisualStudio10TargetGenerator.cxx
|
2016-10-18 00:50:34 +00:00
|
|
|
cmVisualStudio10ToolsetOptions.h
|
|
|
|
cmVisualStudio10ToolsetOptions.cxx
|
2009-06-25 20:41:57 +00:00
|
|
|
cmLocalVisualStudio10Generator.cxx
|
|
|
|
cmLocalVisualStudio10Generator.h
|
|
|
|
cmGlobalVisualStudio10Generator.h
|
|
|
|
cmGlobalVisualStudio10Generator.cxx
|
2011-09-23 13:07:40 +00:00
|
|
|
cmGlobalVisualStudio11Generator.h
|
|
|
|
cmGlobalVisualStudio11Generator.cxx
|
2013-06-28 20:12:08 +00:00
|
|
|
cmGlobalVisualStudio12Generator.h
|
|
|
|
cmGlobalVisualStudio12Generator.cxx
|
2014-06-24 19:39:11 +00:00
|
|
|
cmGlobalVisualStudio14Generator.h
|
|
|
|
cmGlobalVisualStudio14Generator.cxx
|
2016-09-02 20:15:11 +00:00
|
|
|
cmGlobalVisualStudio15Generator.h
|
|
|
|
cmGlobalVisualStudio15Generator.cxx
|
2007-04-04 15:22:14 +00:00
|
|
|
cmGlobalVisualStudioGenerator.cxx
|
|
|
|
cmGlobalVisualStudioGenerator.h
|
2009-07-29 15:28:55 +00:00
|
|
|
cmIDEFlagTable.h
|
2009-07-29 15:29:08 +00:00
|
|
|
cmIDEOptions.cxx
|
|
|
|
cmIDEOptions.h
|
2006-02-01 00:34:57 +00:00
|
|
|
cmLocalVisualStudio7Generator.cxx
|
|
|
|
cmLocalVisualStudio7Generator.h
|
2006-07-11 15:41:38 +00:00
|
|
|
cmLocalVisualStudioGenerator.cxx
|
|
|
|
cmLocalVisualStudioGenerator.h
|
2013-01-08 13:10:42 +00:00
|
|
|
cmVisualStudioSlnData.h
|
|
|
|
cmVisualStudioSlnData.cxx
|
|
|
|
cmVisualStudioSlnParser.h
|
|
|
|
cmVisualStudioSlnParser.cxx
|
2012-11-20 12:12:27 +00:00
|
|
|
cmVisualStudioWCEPlatformParser.h
|
|
|
|
cmVisualStudioWCEPlatformParser.cxx
|
2015-03-24 05:12:55 +00:00
|
|
|
cmGlobalGhsMultiGenerator.cxx
|
|
|
|
cmGlobalGhsMultiGenerator.h
|
|
|
|
cmLocalGhsMultiGenerator.cxx
|
|
|
|
cmLocalGhsMultiGenerator.h
|
|
|
|
cmGhsMultiTargetGenerator.cxx
|
|
|
|
cmGhsMultiTargetGenerator.h
|
|
|
|
cmGhsMultiGpj.cxx
|
|
|
|
cmGhsMultiGpj.h
|
2016-12-15 02:53:30 +00:00
|
|
|
cmVSSetupHelper.cxx
|
|
|
|
cmVSSetupHelper.h
|
2003-08-21 20:22:23 +00:00
|
|
|
)
|
2015-09-18 14:23:21 +00:00
|
|
|
|
|
|
|
# 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)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
|
|
|
endif ()
|
2001-06-12 17:30:13 +00:00
|
|
|
|
2014-03-17 18:30:38 +00:00
|
|
|
# Watcom support
|
2014-09-09 13:09:57 +00:00
|
|
|
if(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
2014-03-17 18:30:38 +00:00
|
|
|
set_property(SOURCE cmake.cxx APPEND PROPERTY COMPILE_DEFINITIONS CMAKE_USE_WMAKE)
|
|
|
|
list(APPEND SRCS
|
|
|
|
cmGlobalWatcomWMakeGenerator.cxx
|
|
|
|
cmGlobalWatcomWMakeGenerator.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2012-07-20 08:53:34 +00:00
|
|
|
# Ninja support
|
2012-08-13 17:47:32 +00:00
|
|
|
set(SRCS ${SRCS}
|
2012-07-20 08:53:34 +00:00
|
|
|
cmGlobalNinjaGenerator.cxx
|
|
|
|
cmGlobalNinjaGenerator.h
|
|
|
|
cmNinjaTypes.h
|
|
|
|
cmLocalNinjaGenerator.cxx
|
|
|
|
cmLocalNinjaGenerator.h
|
|
|
|
cmNinjaTargetGenerator.cxx
|
|
|
|
cmNinjaTargetGenerator.h
|
|
|
|
cmNinjaNormalTargetGenerator.cxx
|
|
|
|
cmNinjaNormalTargetGenerator.h
|
|
|
|
cmNinjaUtilityTargetGenerator.cxx
|
|
|
|
cmNinjaUtilityTargetGenerator.h
|
2016-10-08 10:21:36 +00:00
|
|
|
cmNinjaLinkLineComputer.cxx
|
|
|
|
cmNinjaLinkLineComputer.h
|
2012-07-20 08:53:34 +00:00
|
|
|
)
|
2015-03-24 05:12:55 +00:00
|
|
|
|
2016-07-12 21:10:28 +00:00
|
|
|
# Temporary variable for tools targets
|
|
|
|
set(_tools)
|
|
|
|
|
2014-08-06 13:20:24 +00:00
|
|
|
if(WIN32 AND NOT CYGWIN)
|
2012-08-13 17:47:32 +00:00
|
|
|
set_source_files_properties(cmcldeps.cxx PROPERTIES COMPILE_DEFINITIONS _WIN32_WINNT=0x0501)
|
2015-09-18 14:23:21 +00:00
|
|
|
add_executable(cmcldeps cmcldeps.cxx ${MANIFEST_FILE})
|
2016-07-12 21:10:28 +00:00
|
|
|
list(APPEND _tools cmcldeps)
|
2012-08-13 17:47:32 +00:00
|
|
|
target_link_libraries(cmcldeps CMakeLib)
|
|
|
|
endif()
|
2011-11-11 05:00:49 +00:00
|
|
|
|
2015-01-22 15:15:31 +00:00
|
|
|
foreach(v CURL_CA_BUNDLE CURL_CA_PATH)
|
|
|
|
if(${v})
|
|
|
|
set_property(SOURCE cmCurl.cxx APPEND PROPERTY COMPILE_DEFINITIONS ${v}="${${v}}")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
2015-10-08 17:26:44 +00:00
|
|
|
foreach(check
|
|
|
|
STAT_HAS_ST_MTIM
|
2015-10-08 17:37:37 +00:00
|
|
|
STAT_HAS_ST_MTIMESPEC
|
2015-10-08 17:26:44 +00:00
|
|
|
)
|
|
|
|
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()
|
|
|
|
|
2001-06-19 19:33:37 +00:00
|
|
|
# create a library used by the command line and the GUI
|
2012-08-13 17:47:32 +00:00
|
|
|
add_library(CMakeLib ${SRCS})
|
|
|
|
target_link_libraries(CMakeLib cmsys
|
2006-08-21 16:37:40 +00:00
|
|
|
${CMAKE_EXPAT_LIBRARIES} ${CMAKE_ZLIB_LIBRARIES}
|
2008-02-06 14:35:02 +00:00
|
|
|
${CMAKE_TAR_LIBRARIES} ${CMAKE_COMPRESS_LIBRARIES}
|
2015-01-16 20:35:36 +00:00
|
|
|
${CMAKE_CURL_LIBRARIES}
|
2015-01-20 15:31:13 +00:00
|
|
|
${CMAKE_JSONCPP_LIBRARIES}
|
2016-08-16 20:26:39 +00:00
|
|
|
${CMAKE_LIBUV_LIBRARIES}
|
2016-11-03 15:18:37 +00:00
|
|
|
${CMAKE_LIBRHASH_LIBRARIES}
|
2015-12-18 14:57:55 +00:00
|
|
|
${CMake_KWIML_LIBRARIES}
|
2015-01-16 20:35:36 +00:00
|
|
|
)
|
2006-02-01 00:34:57 +00:00
|
|
|
|
2016-12-19 13:47:01 +00:00
|
|
|
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()
|
|
|
|
|
2010-08-17 20:11:33 +00:00
|
|
|
# On Apple we need CoreFoundation
|
2012-08-13 17:47:32 +00:00
|
|
|
if(APPLE)
|
|
|
|
target_link_libraries(CMakeLib "-framework CoreFoundation")
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2006-04-13 15:00:52 +00:00
|
|
|
|
2015-08-24 14:58:42 +00:00
|
|
|
if(WIN32 AND NOT UNIX)
|
|
|
|
# We need the rpcrt4 library on Windows.
|
2015-08-21 21:15:38 +00:00
|
|
|
# We need the crypt32 library on Windows for crypto/cert APIs.
|
|
|
|
target_link_libraries(CMakeLib rpcrt4 crypt32)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2005-03-04 16:38:34 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# CTestLib
|
|
|
|
#
|
2012-08-13 17:47:32 +00:00
|
|
|
include_directories(
|
2010-07-29 14:59:27 +00:00
|
|
|
"${CMake_SOURCE_DIR}/Source/CTest"
|
2005-03-04 19:27:32 +00:00
|
|
|
${CMAKE_XMLRPC_INCLUDES}
|
2005-06-24 13:06:26 +00:00
|
|
|
${CMAKE_CURL_INCLUDES}
|
2005-03-04 19:27:32 +00:00
|
|
|
)
|
2005-03-04 16:38:34 +00:00
|
|
|
#
|
|
|
|
# Sources for CTestLib
|
|
|
|
#
|
2012-08-13 17:47:32 +00:00
|
|
|
set(CTEST_SRCS cmCTest.cxx
|
2008-07-03 13:31:33 +00:00
|
|
|
CTest/cmProcess.cxx
|
2009-09-10 15:16:08 +00:00
|
|
|
CTest/cmCTestBatchTestHandler.cxx
|
2005-06-14 18:00:45 +00:00
|
|
|
CTest/cmCTestBuildAndTestHandler.cxx
|
2005-05-02 18:15:29 +00:00
|
|
|
CTest/cmCTestBuildCommand.cxx
|
2004-09-07 14:37:39 +00:00
|
|
|
CTest/cmCTestBuildHandler.cxx
|
2005-05-02 18:15:29 +00:00
|
|
|
CTest/cmCTestConfigureCommand.cxx
|
2004-09-09 12:41:05 +00:00
|
|
|
CTest/cmCTestConfigureHandler.cxx
|
2005-06-14 18:00:45 +00:00
|
|
|
CTest/cmCTestCoverageCommand.cxx
|
2004-09-09 12:41:05 +00:00
|
|
|
CTest/cmCTestCoverageHandler.cxx
|
2015-01-14 15:54:25 +00:00
|
|
|
CTest/cmCTestCurl.cxx
|
2012-05-01 17:35:07 +00:00
|
|
|
CTest/cmParseMumpsCoverage.cxx
|
2012-05-01 21:00:43 +00:00
|
|
|
CTest/cmParseCacheCoverage.cxx
|
2012-04-25 21:04:28 +00:00
|
|
|
CTest/cmParseGTMCoverage.cxx
|
2014-05-21 19:19:35 +00:00
|
|
|
CTest/cmParseJacocoCoverage.cxx
|
2014-10-23 21:03:30 +00:00
|
|
|
CTest/cmParseBlanketJSCoverage.cxx
|
2010-05-25 13:23:25 +00:00
|
|
|
CTest/cmParsePHPCoverage.cxx
|
2014-06-03 18:30:46 +00:00
|
|
|
CTest/cmParseCoberturaCoverage.cxx
|
2014-09-29 18:52:10 +00:00
|
|
|
CTest/cmParseDelphiCoverage.cxx
|
2005-01-27 15:11:04 +00:00
|
|
|
CTest/cmCTestEmptyBinaryDirectoryCommand.cxx
|
2005-05-02 18:15:29 +00:00
|
|
|
CTest/cmCTestGenericHandler.cxx
|
2005-06-23 17:04:18 +00:00
|
|
|
CTest/cmCTestHandlerCommand.cxx
|
2009-02-11 16:31:25 +00:00
|
|
|
CTest/cmCTestLaunch.cxx
|
2005-06-14 18:00:45 +00:00
|
|
|
CTest/cmCTestMemCheckCommand.cxx
|
2005-05-02 18:15:29 +00:00
|
|
|
CTest/cmCTestMemCheckHandler.cxx
|
2008-07-03 13:31:33 +00:00
|
|
|
CTest/cmCTestMultiProcessHandler.cxx
|
2006-03-28 20:20:03 +00:00
|
|
|
CTest/cmCTestReadCustomFilesCommand.cxx
|
2005-01-27 15:11:04 +00:00
|
|
|
CTest/cmCTestRunScriptCommand.cxx
|
2009-08-19 12:58:36 +00:00
|
|
|
CTest/cmCTestRunTest.cxx
|
2005-05-02 18:15:29 +00:00
|
|
|
CTest/cmCTestScriptHandler.cxx
|
2005-01-27 15:11:04 +00:00
|
|
|
CTest/cmCTestSleepCommand.cxx
|
2005-02-17 15:51:52 +00:00
|
|
|
CTest/cmCTestStartCommand.cxx
|
2005-05-03 12:17:39 +00:00
|
|
|
CTest/cmCTestSubmitCommand.cxx
|
|
|
|
CTest/cmCTestSubmitHandler.cxx
|
|
|
|
CTest/cmCTestTestCommand.cxx
|
2005-05-02 18:15:29 +00:00
|
|
|
CTest/cmCTestTestHandler.cxx
|
|
|
|
CTest/cmCTestUpdateCommand.cxx
|
|
|
|
CTest/cmCTestUpdateHandler.cxx
|
2011-02-18 17:11:51 +00:00
|
|
|
CTest/cmCTestUploadCommand.cxx
|
|
|
|
CTest/cmCTestUploadHandler.cxx
|
2009-02-24 15:39:28 +00:00
|
|
|
|
|
|
|
CTest/cmCTestVC.cxx
|
|
|
|
CTest/cmCTestVC.h
|
2009-04-22 13:18:19 +00:00
|
|
|
CTest/cmCTestGlobalVC.cxx
|
|
|
|
CTest/cmCTestGlobalVC.h
|
2009-02-24 15:39:55 +00:00
|
|
|
CTest/cmCTestCVS.cxx
|
|
|
|
CTest/cmCTestCVS.h
|
|
|
|
CTest/cmCTestSVN.cxx
|
|
|
|
CTest/cmCTestSVN.h
|
2009-05-14 20:13:52 +00:00
|
|
|
CTest/cmCTestBZR.cxx
|
|
|
|
CTest/cmCTestBZR.h
|
2009-04-22 13:19:06 +00:00
|
|
|
CTest/cmCTestGIT.cxx
|
|
|
|
CTest/cmCTestGIT.h
|
2009-07-10 15:08:05 +00:00
|
|
|
CTest/cmCTestHG.cxx
|
|
|
|
CTest/cmCTestHG.h
|
2013-10-22 22:11:22 +00:00
|
|
|
CTest/cmCTestP4.cxx
|
|
|
|
CTest/cmCTestP4.h
|
2005-01-18 18:41:23 +00:00
|
|
|
)
|
2004-09-06 17:37:34 +00:00
|
|
|
|
2005-03-04 16:38:34 +00:00
|
|
|
# Build CTestLib
|
2012-08-13 17:47:32 +00:00
|
|
|
add_library(CTestLib ${CTEST_SRCS})
|
|
|
|
target_link_libraries(CTestLib CMakeLib ${CMAKE_CURL_LIBRARIES} ${CMAKE_XMLRPC_LIBRARIES})
|
2002-08-27 12:36:03 +00:00
|
|
|
|
2017-04-11 19:53:31 +00:00
|
|
|
#
|
|
|
|
# CPack
|
|
|
|
#
|
|
|
|
include_directories(
|
|
|
|
"${CMake_SOURCE_DIR}/Source/CPack"
|
|
|
|
)
|
2006-01-02 04:31:17 +00:00
|
|
|
#
|
|
|
|
# Sources for CPack
|
|
|
|
#
|
2012-08-13 17:47:32 +00:00
|
|
|
set(CPACK_SRCS
|
2009-10-30 17:10:56 +00:00
|
|
|
CPack/cmCPackArchiveGenerator.cxx
|
2008-07-09 17:38:56 +00:00
|
|
|
CPack/cmCPackComponentGroup.cxx
|
2007-11-05 21:33:19 +00:00
|
|
|
CPack/cmCPackGeneratorFactory.cxx
|
2007-11-05 21:55:45 +00:00
|
|
|
CPack/cmCPackGenerator.cxx
|
2007-01-10 20:30:26 +00:00
|
|
|
CPack/cmCPackLog.cxx
|
2006-01-02 04:31:17 +00:00
|
|
|
CPack/cmCPackNSISGenerator.cxx
|
2007-01-10 20:30:26 +00:00
|
|
|
CPack/cmCPackSTGZGenerator.cxx
|
|
|
|
CPack/cmCPackTGZGenerator.cxx
|
2014-07-09 22:21:36 +00:00
|
|
|
CPack/cmCPackTXZGenerator.cxx
|
2006-05-04 01:42:51 +00:00
|
|
|
CPack/cmCPackTarBZip2Generator.cxx
|
2006-05-02 21:07:16 +00:00
|
|
|
CPack/cmCPackTarCompressGenerator.cxx
|
2007-01-10 20:30:26 +00:00
|
|
|
CPack/cmCPackZIPGenerator.cxx
|
2014-07-09 22:21:36 +00:00
|
|
|
CPack/cmCPack7zGenerator.cxx
|
2017-06-17 16:49:33 +00:00
|
|
|
CPack/cmCPackDebGenerator.cxx
|
2006-01-02 04:31:17 +00:00
|
|
|
)
|
2017-04-27 20:51:00 +00:00
|
|
|
# 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
|
|
|
|
)
|
2007-08-14 12:40:40 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(CYGWIN)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
2007-08-14 12:40:40 +00:00
|
|
|
CPack/cmCPackCygwinBinaryGenerator.cxx
|
|
|
|
CPack/cmCPackCygwinSourceGenerator.cxx
|
|
|
|
)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2010-11-09 20:37:51 +00:00
|
|
|
|
2017-02-12 16:48:14 +00:00
|
|
|
option(CPACK_ENABLE_FREEBSD_PKG "Add FreeBSD pkg(8) generator to CPack." OFF)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(UNIX)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
2007-08-14 12:40:40 +00:00
|
|
|
CPack/cmCPackRPMGenerator.cxx
|
|
|
|
)
|
2017-02-12 16:48:14 +00:00
|
|
|
|
|
|
|
# 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" PATHS /usr/local)
|
|
|
|
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()
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2007-08-14 12:40:40 +00:00
|
|
|
|
2012-10-03 14:08:49 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
|
|
|
CPack/WiX/cmCPackWIXGenerator.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmCPackWIXGenerator.h
|
2014-08-09 12:50:49 +00:00
|
|
|
CPack/WiX/cmWIXAccessControlList.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXAccessControlList.h
|
2014-02-24 22:21:12 +00:00
|
|
|
CPack/WiX/cmWIXDirectoriesSourceWriter.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXDirectoriesSourceWriter.h
|
2014-02-24 22:21:12 +00:00
|
|
|
CPack/WiX/cmWIXFeaturesSourceWriter.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXFeaturesSourceWriter.h
|
2014-02-24 22:21:12 +00:00
|
|
|
CPack/WiX/cmWIXFilesSourceWriter.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXFilesSourceWriter.h
|
2014-02-24 22:21:12 +00:00
|
|
|
CPack/WiX/cmWIXPatch.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXPatch.h
|
2013-12-16 21:30:11 +00:00
|
|
|
CPack/WiX/cmWIXPatchParser.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXPatchParser.h
|
2014-08-09 12:50:49 +00:00
|
|
|
CPack/WiX/cmWIXRichTextFormatWriter.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXRichTextFormatWriter.h
|
2015-02-21 11:38:14 +00:00
|
|
|
CPack/WiX/cmWIXShortcut.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXShortcut.h
|
2014-08-09 12:50:49 +00:00
|
|
|
CPack/WiX/cmWIXSourceWriter.cxx
|
2015-02-20 16:51:55 +00:00
|
|
|
CPack/WiX/cmWIXSourceWriter.h
|
2012-10-03 14:08:49 +00:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(APPLE)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
2008-06-18 13:53:29 +00:00
|
|
|
CPack/cmCPackBundleGenerator.cxx
|
2009-01-22 17:12:44 +00:00
|
|
|
CPack/cmCPackDragNDropGenerator.cxx
|
2007-08-14 12:40:40 +00:00
|
|
|
CPack/cmCPackOSXX11Generator.cxx
|
2016-04-05 00:53:05 +00:00
|
|
|
CPack/cmCPackPKGGenerator.cxx
|
2007-08-14 12:40:40 +00:00
|
|
|
CPack/cmCPackPackageMakerGenerator.cxx
|
2013-11-02 16:24:53 +00:00
|
|
|
CPack/cmCPackProductBuildGenerator.cxx
|
2007-08-14 12:40:40 +00:00
|
|
|
)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2007-08-14 12:40:40 +00:00
|
|
|
|
2006-01-02 04:31:17 +00:00
|
|
|
# Build CPackLib
|
2012-08-13 17:47:32 +00:00
|
|
|
add_library(CPackLib ${CPACK_SRCS})
|
|
|
|
target_link_libraries(CPackLib CMakeLib)
|
2015-10-19 09:13:55 +00:00
|
|
|
if(APPLE)
|
2016-03-18 12:49:02 +00:00
|
|
|
# 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()
|
2015-10-19 09:13:55 +00:00
|
|
|
endif()
|
2017-02-12 16:48:14 +00:00
|
|
|
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()
|
2006-01-02 04:31:17 +00:00
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(APPLE)
|
|
|
|
add_executable(cmakexbuild cmakexbuild.cxx)
|
2016-07-12 21:10:28 +00:00
|
|
|
list(APPEND _tools cmakexbuild)
|
2012-08-13 17:47:32 +00:00
|
|
|
target_link_libraries(cmakexbuild CMakeLib)
|
|
|
|
add_executable(OSXScriptLauncher
|
2007-01-31 18:54:02 +00:00
|
|
|
CPack/OSXScriptLauncher.cxx)
|
2012-08-13 17:47:32 +00:00
|
|
|
target_link_libraries(OSXScriptLauncher cmsys)
|
|
|
|
target_link_libraries(OSXScriptLauncher "-framework CoreFoundation")
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2006-03-31 18:17:23 +00:00
|
|
|
|
2005-03-04 16:38:34 +00:00
|
|
|
# Build CMake executable
|
2015-09-18 14:23:21 +00:00
|
|
|
add_executable(cmake cmakemain.cxx cmcmd.cxx cmcmd.h ${MANIFEST_FILE})
|
2016-07-12 21:10:28 +00:00
|
|
|
list(APPEND _tools cmake)
|
2012-08-13 17:47:32 +00:00
|
|
|
target_link_libraries(cmake CMakeLib)
|
2003-04-25 19:17:08 +00:00
|
|
|
|
2017-08-25 20:07:43 +00:00
|
|
|
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)
|
2016-09-13 09:26:34 +00:00
|
|
|
|
2005-03-04 16:38:34 +00:00
|
|
|
# Build CTest executable
|
2015-09-18 14:23:21 +00:00
|
|
|
add_executable(ctest ctest.cxx ${MANIFEST_FILE})
|
2016-07-12 21:10:28 +00:00
|
|
|
list(APPEND _tools ctest)
|
2012-08-13 17:47:32 +00:00
|
|
|
target_link_libraries(ctest CTestLib)
|
2002-05-02 19:10:19 +00:00
|
|
|
|
2006-01-02 04:31:17 +00:00
|
|
|
# Build CPack executable
|
2015-09-18 14:23:21 +00:00
|
|
|
add_executable(cpack CPack/cpack.cxx ${MANIFEST_FILE})
|
2016-07-12 21:10:28 +00:00
|
|
|
list(APPEND _tools cpack)
|
2012-08-13 17:47:32 +00:00
|
|
|
target_link_libraries(cpack CPackLib)
|
2006-01-02 04:31:17 +00:00
|
|
|
|
2005-03-04 16:38:34 +00:00
|
|
|
# Curses GUI
|
2012-08-13 17:47:32 +00:00
|
|
|
if(BUILD_CursesDialog)
|
|
|
|
include(${CMake_SOURCE_DIR}/Source/CursesDialog/CMakeLists.txt)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2002-05-02 19:10:19 +00:00
|
|
|
|
2007-11-02 16:03:29 +00:00
|
|
|
# Qt GUI
|
2012-08-13 17:47:32 +00:00
|
|
|
option(BUILD_QtDialog "Build Qt dialog for CMake" FALSE)
|
|
|
|
if(BUILD_QtDialog)
|
2012-08-17 18:37:54 +00:00
|
|
|
add_subdirectory(QtDialog)
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
2012-08-13 17:47:32 +00:00
|
|
|
|
|
|
|
include (${CMake_BINARY_DIR}/Source/LocalUserOptions.cmake OPTIONAL)
|
|
|
|
include (${CMake_SOURCE_DIR}/Source/LocalUserOptions.cmake OPTIONAL)
|
|
|
|
|
2014-12-07 18:25:28 +00:00
|
|
|
# Install tools
|
|
|
|
|
|
|
|
foreach(_tool ${_tools})
|
2015-07-03 09:58:22 +00:00
|
|
|
CMake_OPTIONAL_COMPONENT(${_tool})
|
2016-05-27 14:03:43 +00:00
|
|
|
install(TARGETS ${_tool} DESTINATION ${CMAKE_BIN_DIR} ${COMPONENT})
|
2014-12-07 18:25:28 +00:00
|
|
|
endforeach()
|
|
|
|
|
2013-08-26 15:50:08 +00:00
|
|
|
install(FILES cmCPluginAPI.h DESTINATION ${CMAKE_DATA_DIR}/include)
|
2016-07-12 21:10:28 +00:00
|
|
|
|
|
|
|
# Unset temporary variables
|
|
|
|
unset(_tools)
|