2009-09-28 11:43:28 -04:00
|
|
|
#=============================================================================
|
|
|
|
# CMake - Cross Platform Makefile Generator
|
|
|
|
# Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2012-08-13 13:47:32 -04:00
|
|
|
include(CheckIncludeFile)
|
2008-02-27 16:26:35 -05:00
|
|
|
# Check if we can build support for ELF parsing.
|
|
|
|
CHECK_INCLUDE_FILE("elf.h" HAVE_ELF_H)
|
2012-08-13 13:47:32 -04:00
|
|
|
if(HAVE_ELF_H)
|
|
|
|
set(CMAKE_USE_ELF_PARSER 1)
|
2012-08-13 13:50:14 -04:00
|
|
|
else()
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CMAKE_USE_ELF_PARSER)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2008-02-27 16:26:35 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMake_BIN_DIR})
|
2009-12-08 11:44:28 -05:00
|
|
|
|
2005-03-04 11:38:34 -05:00
|
|
|
# configure the .h file
|
2012-08-13 13:47:32 -04:00
|
|
|
configure_file(
|
2005-03-04 14:27:32 -05:00
|
|
|
"${CMake_SOURCE_DIR}/Source/cmConfigure.cmake.h.in"
|
|
|
|
"${CMake_BINARY_DIR}/Source/cmConfigure.h"
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
configure_file(
|
2009-03-05 15:17:07 -05:00
|
|
|
"${CMake_SOURCE_DIR}/Source/cmVersionConfig.h.in"
|
|
|
|
"${CMake_BINARY_DIR}/Source/cmVersionConfig.h"
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
configure_file(
|
2006-01-01 23:31:17 -05:00
|
|
|
"${CMake_SOURCE_DIR}/Source/CPack/cmCPackConfigure.h.in"
|
|
|
|
"${CMake_BINARY_DIR}/Source/CPack/cmCPackConfigure.h"
|
|
|
|
)
|
2005-03-04 11:38:34 -05:00
|
|
|
|
2006-04-21 14:26:11 -04:00
|
|
|
# add the include path to find the .h
|
2012-08-13 13:47:32 -04:00
|
|
|
include_directories(
|
2005-03-04 14:27:32 -05:00
|
|
|
"${CMake_BINARY_DIR}/Source"
|
|
|
|
"${CMake_SOURCE_DIR}/Source"
|
2005-03-16 12:54:35 -05:00
|
|
|
${CMAKE_ZLIB_INCLUDES}
|
|
|
|
${CMAKE_EXPAT_INCLUDES}
|
2005-12-28 16:30:28 -05:00
|
|
|
${CMAKE_TAR_INCLUDES}
|
2006-08-21 12:37:40 -04:00
|
|
|
${CMAKE_COMPRESS_INCLUDES}
|
2005-03-04 14:27:32 -05:00
|
|
|
)
|
2005-03-04 11:38:34 -05:00
|
|
|
|
|
|
|
# let cmake know it is supposed to use it
|
2012-08-13 13:47:32 -04:00
|
|
|
add_definitions(-DCMAKE_BUILD_WITH_CMAKE)
|
2005-03-04 11:38:34 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
option(CMAKE_REGENERATE_YACCLEX
|
2005-06-13 11:00:29 -04:00
|
|
|
"Regenerate YACC and LEXX files" OFF)
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(CMAKE_REGENERATE_YACCLEX)
|
|
|
|
if(CMAKE_REGENERATE_YACCLEX)
|
|
|
|
set(parsersLexers cmDependsFortran cmCommandArgument cmExpr)
|
|
|
|
find_program(YACC_EXECUTABLE
|
2005-06-13 11:00:29 -04:00
|
|
|
NAMES yacc bison
|
|
|
|
PATHS /usr/bin
|
|
|
|
DOC "Yacc or Bison executable")
|
2012-08-13 13:47:32 -04:00
|
|
|
find_program(FLEX_EXECUTABLE
|
2005-06-13 11:00:29 -04:00
|
|
|
NAMES flex
|
|
|
|
PATHS /usr/bin
|
|
|
|
DOC "Flex executable")
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(YACC_EXECUTABLE FLEX_EXECUTABLE)
|
|
|
|
if(YACC_EXECUTABLE)
|
|
|
|
set(BISON_FLAGS)
|
|
|
|
if(YACC_EXECUTABLE MATCHES "bison")
|
|
|
|
set(BISON_FLAGS "--yacc")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
set(yacc_files)
|
|
|
|
foreach(name ${parsersLexers})
|
|
|
|
set(src "${CMAKE_CURRENT_SOURCE_DIR}/${name}Parser.y")
|
|
|
|
set(dst "${CMAKE_CURRENT_BINARY_DIR}/${name}Parser.cxx")
|
|
|
|
set(hdr "${CMAKE_CURRENT_BINARY_DIR}/${name}ParserTokens.h")
|
|
|
|
add_custom_command(
|
2005-06-13 11:00:29 -04:00
|
|
|
OUTPUT "${dst}"
|
|
|
|
DEPENDS "${src}"
|
2007-10-03 15:23:54 -04:00
|
|
|
COMMAND
|
|
|
|
${YACC_EXECUTABLE}
|
|
|
|
--name-prefix=${name}_yy --defines=${hdr} -o${dst} ${src}
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
set(yacc_files ${yacc_files} "${dst}")
|
2012-08-13 13:50:14 -04:00
|
|
|
endforeach()
|
2012-08-13 13:47:32 -04:00
|
|
|
add_custom_target(RerunYacc DEPENDS ${yacc_files})
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
if(FLEX_EXECUTABLE)
|
|
|
|
set(lex_files)
|
|
|
|
foreach(name ${parsersLexers})
|
|
|
|
set(src "${CMAKE_CURRENT_SOURCE_DIR}/${name}Lexer.in.l")
|
|
|
|
set(dst "${CMAKE_CURRENT_BINARY_DIR}/${name}Lexer.cxx")
|
|
|
|
set(hdr "${CMAKE_CURRENT_BINARY_DIR}/${name}Lexer.h")
|
|
|
|
add_custom_command(
|
2005-06-13 11:00:29 -04:00
|
|
|
OUTPUT "${dst}"
|
|
|
|
DEPENDS "${src}"
|
2007-10-03 15:23:54 -04:00
|
|
|
COMMAND
|
|
|
|
${FLEX_EXECUTABLE}
|
|
|
|
--prefix=${name}_yy --header-file=${hdr} -o${dst} ${src}
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
set(lex_files ${lex_files} "${dst}")
|
2012-08-13 13:50:14 -04:00
|
|
|
endforeach()
|
2012-08-13 13:47:32 -04:00
|
|
|
add_custom_target(RerunLex DEPENDS ${lex_files})
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2005-06-13 11:00:29 -04:00
|
|
|
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2008-02-27 16:26:35 -05:00
|
|
|
|
|
|
|
# Check if we can build the ELF parser.
|
2012-08-13 13:47:32 -04:00
|
|
|
if(CMAKE_USE_ELF_PARSER)
|
|
|
|
set(ELF_SRCS cmELF.h cmELF.cxx)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2008-02-27 16:26:35 -05:00
|
|
|
|
2005-03-04 11:38:34 -05:00
|
|
|
#
|
|
|
|
# Sources for CMakeLib
|
|
|
|
#
|
2012-08-13 13:47:32 -04:00
|
|
|
set(SRCS
|
2010-06-10 15:18:21 -04:00
|
|
|
cmStandardIncludes.cxx
|
2010-08-06 11:38:05 -04:00
|
|
|
cmArchiveWrite.cxx
|
2005-01-28 17:14:49 -05:00
|
|
|
cmBootstrapCommands.cxx
|
2005-01-18 13:41:23 -05:00
|
|
|
cmCacheManager.cxx
|
|
|
|
cmCacheManager.h
|
|
|
|
cmCommands.cxx
|
|
|
|
cmCommands.h
|
2005-06-13 11:00:29 -04:00
|
|
|
cmCommandArgumentLexer.cxx
|
|
|
|
cmCommandArgumentParser.cxx
|
|
|
|
cmCommandArgumentParserHelper.cxx
|
2008-02-07 16:14:05 -05:00
|
|
|
cmComputeComponentGraph.cxx
|
|
|
|
cmComputeComponentGraph.h
|
2008-01-27 13:42:49 -05:00
|
|
|
cmComputeLinkDepends.cxx
|
|
|
|
cmComputeLinkDepends.h
|
2008-01-22 09:13:04 -05:00
|
|
|
cmComputeLinkInformation.cxx
|
|
|
|
cmComputeLinkInformation.h
|
2008-02-05 23:10:41 -05:00
|
|
|
cmComputeTargetDepends.h
|
|
|
|
cmComputeTargetDepends.cxx
|
2011-11-15 19:37:38 -05:00
|
|
|
cmCryptoHash.cxx
|
|
|
|
cmCryptoHash.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmCustomCommand.cxx
|
|
|
|
cmCustomCommand.h
|
2010-12-07 16:23:38 -05:00
|
|
|
cmCustomCommandGenerator.cxx
|
|
|
|
cmCustomCommandGenerator.h
|
2009-07-22 14:22:45 -04:00
|
|
|
cmDefinitions.cxx
|
|
|
|
cmDefinitions.h
|
2005-01-28 17:14:49 -05:00
|
|
|
cmDepends.cxx
|
|
|
|
cmDepends.h
|
|
|
|
cmDependsC.cxx
|
|
|
|
cmDependsC.h
|
|
|
|
cmDependsFortran.cxx
|
|
|
|
cmDependsFortran.h
|
2005-02-01 10:42:52 -05:00
|
|
|
cmDependsFortranLexer.cxx
|
|
|
|
cmDependsFortranParser.cxx
|
2005-01-28 17:14:49 -05:00
|
|
|
cmDependsFortranParser.h
|
2005-03-01 12:21:34 -05:00
|
|
|
cmDependsJava.cxx
|
|
|
|
cmDependsJava.h
|
2005-01-28 17:14:49 -05:00
|
|
|
cmDependsJavaLexer.cxx
|
|
|
|
cmDependsJavaParser.cxx
|
|
|
|
cmDependsJavaParserHelper.cxx
|
|
|
|
cmDependsJavaParserHelper.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmDocumentation.cxx
|
2007-09-19 09:05:28 -04:00
|
|
|
cmDocumentationFormatter.cxx
|
|
|
|
cmDocumentationFormatterHTML.cxx
|
2008-02-19 14:33:43 -05:00
|
|
|
cmDocumentationFormatterDocbook.cxx
|
2007-09-19 09:05:28 -04:00
|
|
|
cmDocumentationFormatterMan.cxx
|
|
|
|
cmDocumentationFormatterText.cxx
|
|
|
|
cmDocumentationFormatterUsage.cxx
|
2007-10-22 12:49:09 -04:00
|
|
|
cmDocumentationSection.cxx
|
2011-01-17 07:55:48 -05:00
|
|
|
cmDocumentCompileDefinitions.h
|
2010-12-06 17:11:36 -05:00
|
|
|
cmDocumentGeneratorExpressions.h
|
2011-12-01 15:41:01 -05:00
|
|
|
cmDocumentLocationUndefined.h
|
2007-10-18 09:10:42 -04:00
|
|
|
cmDocumentVariables.cxx
|
2005-01-18 13:41:23 -05:00
|
|
|
cmDynamicLoader.cxx
|
|
|
|
cmDynamicLoader.h
|
2008-02-27 16:26:35 -05:00
|
|
|
${ELF_SRCS}
|
2005-10-17 16:42:47 -04:00
|
|
|
cmExprLexer.cxx
|
|
|
|
cmExprParser.cxx
|
|
|
|
cmExprParserHelper.cxx
|
2008-01-28 08:38:36 -05:00
|
|
|
cmExportBuildFileGenerator.h
|
|
|
|
cmExportBuildFileGenerator.cxx
|
|
|
|
cmExportFileGenerator.h
|
|
|
|
cmExportFileGenerator.cxx
|
|
|
|
cmExportInstallFileGenerator.h
|
|
|
|
cmExportInstallFileGenerator.cxx
|
2010-01-13 12:58:08 -05:00
|
|
|
cmExtraCodeBlocksGenerator.cxx
|
|
|
|
cmExtraCodeBlocksGenerator.h
|
2007-08-01 09:18:50 -04:00
|
|
|
cmExtraEclipseCDT4Generator.cxx
|
|
|
|
cmExtraEclipseCDT4Generator.h
|
2006-12-04 11:05:23 -05:00
|
|
|
cmFileTimeComparison.cxx
|
|
|
|
cmFileTimeComparison.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmGeneratedFileStream.cxx
|
2009-08-11 09:54:56 -04:00
|
|
|
cmGeneratorExpression.cxx
|
|
|
|
cmGeneratorExpression.h
|
2012-03-07 11:44:48 -05:00
|
|
|
cmGeneratorTarget.cxx
|
|
|
|
cmGeneratorTarget.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmGlobalGenerator.cxx
|
|
|
|
cmGlobalGenerator.h
|
2005-05-12 10:49:56 -04:00
|
|
|
cmGlobalUnixMakefileGenerator3.cxx
|
|
|
|
cmGlobalUnixMakefileGenerator3.h
|
2008-02-07 16:14:05 -05:00
|
|
|
cmGraphAdjacencyList.h
|
2010-11-09 21:37:51 +01:00
|
|
|
cmGraphVizWriter.cxx
|
|
|
|
cmGraphVizWriter.h
|
2006-02-19 15:25:27 -05:00
|
|
|
cmInstallGenerator.h
|
|
|
|
cmInstallGenerator.cxx
|
2007-06-19 13:10:21 -04:00
|
|
|
cmInstallExportGenerator.cxx
|
2006-02-19 18:47:13 -05:00
|
|
|
cmInstallFilesGenerator.h
|
|
|
|
cmInstallFilesGenerator.cxx
|
2006-02-19 15:25:27 -05:00
|
|
|
cmInstallScriptGenerator.h
|
|
|
|
cmInstallScriptGenerator.cxx
|
|
|
|
cmInstallTargetGenerator.h
|
|
|
|
cmInstallTargetGenerator.cxx
|
2006-08-17 14:48:54 -04:00
|
|
|
cmInstallDirectoryGenerator.h
|
|
|
|
cmInstallDirectoryGenerator.cxx
|
2005-01-18 13:41:23 -05:00
|
|
|
cmListFileCache.cxx
|
|
|
|
cmListFileCache.h
|
|
|
|
cmListFileLexer.c
|
|
|
|
cmLocalGenerator.cxx
|
|
|
|
cmLocalGenerator.h
|
2005-05-12 10:49:56 -04:00
|
|
|
cmLocalUnixMakefileGenerator3.cxx
|
2005-01-18 13:41:23 -05:00
|
|
|
cmMakeDepend.cxx
|
|
|
|
cmMakeDepend.h
|
|
|
|
cmMakefile.cxx
|
|
|
|
cmMakefile.h
|
2006-02-15 10:34:11 -05:00
|
|
|
cmMakefileTargetGenerator.cxx
|
|
|
|
cmMakefileExecutableTargetGenerator.cxx
|
|
|
|
cmMakefileLibraryTargetGenerator.cxx
|
|
|
|
cmMakefileUtilityTargetGenerator.cxx
|
2012-07-07 19:54:16 +02:00
|
|
|
cmOSXBundleGenerator.cxx
|
|
|
|
cmOSXBundleGenerator.h
|
2011-11-20 14:04:11 +01:00
|
|
|
cmNewLineStyle.h
|
|
|
|
cmNewLineStyle.cxx
|
2008-02-21 11:41:11 -05:00
|
|
|
cmOrderDirectories.cxx
|
|
|
|
cmOrderDirectories.h
|
2008-03-01 15:20:35 -05:00
|
|
|
cmPolicies.h
|
|
|
|
cmPolicies.cxx
|
2009-02-24 10:40:18 -05:00
|
|
|
cmProcessTools.cxx
|
|
|
|
cmProcessTools.h
|
2006-12-04 11:05:23 -05:00
|
|
|
cmProperty.cxx
|
|
|
|
cmProperty.h
|
|
|
|
cmPropertyDefinition.cxx
|
|
|
|
cmPropertyDefinition.h
|
2006-12-07 09:45:32 -05:00
|
|
|
cmPropertyDefinitionMap.cxx
|
|
|
|
cmPropertyDefinitionMap.h
|
|
|
|
cmPropertyMap.cxx
|
|
|
|
cmPropertyMap.h
|
2011-08-07 12:02:46 +02:00
|
|
|
cmQtAutomoc.cxx
|
|
|
|
cmQtAutomoc.h
|
2009-03-16 10:39:56 -04:00
|
|
|
cmScriptGenerator.h
|
|
|
|
cmScriptGenerator.cxx
|
2005-01-18 13:41:23 -05:00
|
|
|
cmSourceFile.cxx
|
|
|
|
cmSourceFile.h
|
2007-06-18 11:59:23 -04:00
|
|
|
cmSourceFileLocation.cxx
|
|
|
|
cmSourceFileLocation.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmSourceGroup.cxx
|
|
|
|
cmSourceGroup.h
|
|
|
|
cmSystemTools.cxx
|
|
|
|
cmSystemTools.h
|
|
|
|
cmTarget.cxx
|
|
|
|
cmTarget.h
|
2005-04-24 15:59:51 -04:00
|
|
|
cmTest.cxx
|
|
|
|
cmTest.h
|
2009-03-16 10:40:46 -04:00
|
|
|
cmTestGenerator.cxx
|
|
|
|
cmTestGenerator.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmVariableWatch.cxx
|
|
|
|
cmVariableWatch.h
|
|
|
|
cmVersion.cxx
|
|
|
|
cmVersion.h
|
|
|
|
cmXMLParser.cxx
|
|
|
|
cmXMLParser.h
|
2009-02-05 16:31:37 -05:00
|
|
|
cmXMLSafe.cxx
|
|
|
|
cmXMLSafe.h
|
2005-01-18 13:41:23 -05:00
|
|
|
cmake.cxx
|
|
|
|
cmake.h
|
|
|
|
cmakewizard.cxx
|
|
|
|
cmakewizard.h
|
2009-12-08 15:43:55 -05:00
|
|
|
|
2011-11-15 20:22:51 -05:00
|
|
|
cm_sha2.h
|
|
|
|
cm_sha2.c
|
2009-12-08 15:43:55 -05:00
|
|
|
cm_utf8.h
|
|
|
|
cm_utf8.c
|
2005-01-18 13:41:23 -05:00
|
|
|
)
|
2001-06-12 13:30:13 -04:00
|
|
|
|
2004-10-11 11:32:14 -04:00
|
|
|
# Kdevelop only works on UNIX and not windows
|
2012-08-13 13:47:32 -04:00
|
|
|
if(UNIX)
|
|
|
|
set(SRCS ${SRCS} cmGlobalKdevelopGenerator.cxx)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2007-07-18 10:19:33 -04:00
|
|
|
|
2011-05-27 18:12:14 -04:00
|
|
|
# Xcode only works on Apple
|
2012-08-13 13:47:32 -04:00
|
|
|
if(APPLE)
|
|
|
|
set(SRCS ${SRCS}
|
2005-03-14 13:23:14 -05:00
|
|
|
cmXCodeObject.cxx
|
2005-09-02 16:29:32 -04:00
|
|
|
cmXCode21Object.cxx
|
2005-03-14 13:23:14 -05:00
|
|
|
cmGlobalXCodeGenerator.cxx
|
2005-07-19 16:40:44 -04:00
|
|
|
cmGlobalXCodeGenerator.h
|
2005-03-14 13:23:14 -05:00
|
|
|
cmLocalXCodeGenerator.cxx
|
|
|
|
cmLocalXCodeGenerator.h)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2004-10-11 11:32:14 -04:00
|
|
|
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if (WIN32)
|
|
|
|
set(SRCS ${SRCS}
|
2007-11-16 07:01:58 -05:00
|
|
|
cmCallVisualStudioMacro.cxx
|
|
|
|
cmCallVisualStudioMacro.h
|
|
|
|
)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if(NOT UNIX)
|
|
|
|
set(SRCS ${SRCS}
|
2003-08-21 16:22:23 -04:00
|
|
|
cmGlobalBorlandMakefileGenerator.cxx
|
2006-01-31 19:34:57 -05:00
|
|
|
cmGlobalBorlandMakefileGenerator.h
|
2005-12-22 16:42:36 -05:00
|
|
|
cmGlobalMSYSMakefileGenerator.cxx
|
|
|
|
cmGlobalMinGWMakefileGenerator.cxx
|
2006-01-31 19:34:57 -05:00
|
|
|
cmGlobalNMakeMakefileGenerator.cxx
|
2003-08-21 16:22:23 -04:00
|
|
|
cmGlobalNMakeMakefileGenerator.h
|
2009-11-05 15:00:15 -05:00
|
|
|
cmGlobalJOMMakefileGenerator.cxx
|
|
|
|
cmGlobalJOMMakefileGenerator.h
|
2006-01-31 19:34:57 -05:00
|
|
|
cmGlobalVisualStudio6Generator.cxx
|
2003-08-21 16:22:23 -04:00
|
|
|
cmGlobalVisualStudio6Generator.h
|
2006-01-31 19:34:57 -05:00
|
|
|
cmGlobalVisualStudio71Generator.cxx
|
|
|
|
cmGlobalVisualStudio71Generator.h
|
|
|
|
cmGlobalVisualStudio7Generator.cxx
|
|
|
|
cmGlobalVisualStudio7Generator.h
|
|
|
|
cmGlobalVisualStudio8Generator.cxx
|
|
|
|
cmGlobalVisualStudio8Generator.h
|
2007-09-17 15:21:47 -04:00
|
|
|
cmGlobalVisualStudio9Generator.cxx
|
|
|
|
cmGlobalVisualStudio9Generator.h
|
2006-03-30 13:49:56 -05:00
|
|
|
cmGlobalVisualStudio8Win64Generator.cxx
|
|
|
|
cmGlobalVisualStudio8Win64Generator.h
|
2007-12-17 14:43:11 -05:00
|
|
|
cmGlobalVisualStudio9Win64Generator.cxx
|
|
|
|
cmGlobalVisualStudio9Win64Generator.h
|
2011-06-19 20:42:42 +02:00
|
|
|
cmGlobalVisualStudio9IA64Generator.cxx
|
|
|
|
cmGlobalVisualStudio9IA64Generator.h
|
2009-06-25 16:41:57 -04:00
|
|
|
cmVisualStudioGeneratorOptions.h
|
|
|
|
cmVisualStudioGeneratorOptions.cxx
|
|
|
|
cmVisualStudio10TargetGenerator.h
|
|
|
|
cmVisualStudio10TargetGenerator.cxx
|
|
|
|
cmLocalVisualStudio10Generator.cxx
|
|
|
|
cmLocalVisualStudio10Generator.h
|
|
|
|
cmGlobalVisualStudio10Generator.h
|
|
|
|
cmGlobalVisualStudio10Generator.cxx
|
2009-10-22 08:24:11 -04:00
|
|
|
cmGlobalVisualStudio10Win64Generator.h
|
|
|
|
cmGlobalVisualStudio10Win64Generator.cxx
|
2011-06-19 20:42:42 +02:00
|
|
|
cmGlobalVisualStudio10IA64Generator.h
|
|
|
|
cmGlobalVisualStudio10IA64Generator.cxx
|
2011-09-23 09:07:40 -04:00
|
|
|
cmGlobalVisualStudio11Generator.h
|
|
|
|
cmGlobalVisualStudio11Generator.cxx
|
|
|
|
cmGlobalVisualStudio11Win64Generator.h
|
|
|
|
cmGlobalVisualStudio11Win64Generator.cxx
|
2012-05-09 04:08:00 -04:00
|
|
|
cmGlobalVisualStudio11ARMGenerator.h
|
|
|
|
cmGlobalVisualStudio11ARMGenerator.cxx
|
2007-04-04 11:22:14 -04:00
|
|
|
cmGlobalVisualStudioGenerator.cxx
|
|
|
|
cmGlobalVisualStudioGenerator.h
|
2006-01-31 19:34:57 -05:00
|
|
|
cmGlobalWatcomWMakeGenerator.cxx
|
2009-07-29 11:28:55 -04:00
|
|
|
cmIDEFlagTable.h
|
2009-07-29 11:29:08 -04:00
|
|
|
cmIDEOptions.cxx
|
|
|
|
cmIDEOptions.h
|
2006-01-31 19:34:57 -05:00
|
|
|
cmLocalVisualStudio6Generator.cxx
|
2003-08-21 16:22:23 -04:00
|
|
|
cmLocalVisualStudio6Generator.h
|
2006-01-31 19:34:57 -05:00
|
|
|
cmLocalVisualStudio7Generator.cxx
|
|
|
|
cmLocalVisualStudio7Generator.h
|
2006-07-11 11:41:38 -04:00
|
|
|
cmLocalVisualStudioGenerator.cxx
|
|
|
|
cmLocalVisualStudioGenerator.h
|
2003-08-21 16:22:23 -04:00
|
|
|
cmWin32ProcessExecution.cxx
|
|
|
|
cmWin32ProcessExecution.h
|
|
|
|
)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
|
|
|
endif ()
|
2001-06-12 13:30:13 -04:00
|
|
|
|
2012-07-20 10:53:34 +02:00
|
|
|
# Ninja support
|
2012-08-13 13:47:32 -04:00
|
|
|
set(SRCS ${SRCS}
|
2012-07-20 10:53:34 +02:00
|
|
|
cmGlobalNinjaGenerator.cxx
|
|
|
|
cmGlobalNinjaGenerator.h
|
|
|
|
cmNinjaTypes.h
|
|
|
|
cmLocalNinjaGenerator.cxx
|
|
|
|
cmLocalNinjaGenerator.h
|
|
|
|
cmNinjaTargetGenerator.cxx
|
|
|
|
cmNinjaTargetGenerator.h
|
|
|
|
cmNinjaNormalTargetGenerator.cxx
|
|
|
|
cmNinjaNormalTargetGenerator.h
|
|
|
|
cmNinjaUtilityTargetGenerator.cxx
|
|
|
|
cmNinjaUtilityTargetGenerator.h
|
|
|
|
)
|
2012-08-13 13:47:32 -04:00
|
|
|
if(WIN32 AND NOT CYGWIN AND NOT BORLAND)
|
|
|
|
set_source_files_properties(cmcldeps.cxx PROPERTIES COMPILE_DEFINITIONS _WIN32_WINNT=0x0501)
|
|
|
|
add_executable(cmcldeps cmcldeps.cxx)
|
|
|
|
target_link_libraries(cmcldeps CMakeLib)
|
|
|
|
install_targets(/bin cmcldeps)
|
|
|
|
endif()
|
2011-11-11 05:00:49 +00:00
|
|
|
|
2001-06-19 15:33:37 -04:00
|
|
|
# create a library used by the command line and the GUI
|
2012-08-13 13:47:32 -04:00
|
|
|
add_library(CMakeLib ${SRCS})
|
|
|
|
target_link_libraries(CMakeLib cmsys
|
2006-08-21 12:37:40 -04:00
|
|
|
${CMAKE_EXPAT_LIBRARIES} ${CMAKE_ZLIB_LIBRARIES}
|
2008-02-06 09:35:02 -05:00
|
|
|
${CMAKE_TAR_LIBRARIES} ${CMAKE_COMPRESS_LIBRARIES}
|
2009-10-30 13:10:56 -04:00
|
|
|
${CMAKE_CURL_LIBRARIES} )
|
2006-01-31 19:34:57 -05:00
|
|
|
|
2010-08-17 16:11:33 -04:00
|
|
|
# On Apple we need CoreFoundation
|
2012-08-13 13:47:32 -04:00
|
|
|
if(APPLE)
|
|
|
|
target_link_libraries(CMakeLib "-framework CoreFoundation")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2006-04-13 11:00:52 -04:00
|
|
|
|
2006-01-31 19:34:57 -05:00
|
|
|
# On some platforms we need the rpcrt4 library for the VS 7 generators.
|
2012-08-13 13:47:32 -04:00
|
|
|
if(CMAKE_BUILD_ON_VISUAL_STUDIO OR MINGW)
|
|
|
|
target_link_libraries(CMakeLib rpcrt4)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2005-03-04 11:38:34 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# CTestLib
|
|
|
|
#
|
2012-08-13 13:47:32 -04:00
|
|
|
include_directories(
|
2010-07-29 10:59:27 -04:00
|
|
|
"${CMake_SOURCE_DIR}/Source/CTest"
|
2005-03-04 14:27:32 -05:00
|
|
|
${CMAKE_XMLRPC_INCLUDES}
|
2005-06-24 09:06:26 -04:00
|
|
|
${CMAKE_CURL_INCLUDES}
|
2005-03-04 14:27:32 -05:00
|
|
|
)
|
2005-03-04 11:38:34 -05:00
|
|
|
#
|
|
|
|
# Sources for CTestLib
|
|
|
|
#
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CTEST_SRCS cmCTest.cxx
|
2008-07-03 09:31:33 -04:00
|
|
|
CTest/cmProcess.cxx
|
2009-09-10 11:16:08 -04:00
|
|
|
CTest/cmCTestBatchTestHandler.cxx
|
2005-06-14 14:00:45 -04:00
|
|
|
CTest/cmCTestBuildAndTestHandler.cxx
|
2005-05-02 14:15:29 -04:00
|
|
|
CTest/cmCTestBuildCommand.cxx
|
2004-09-07 10:37:39 -04:00
|
|
|
CTest/cmCTestBuildHandler.cxx
|
2005-05-02 14:15:29 -04:00
|
|
|
CTest/cmCTestConfigureCommand.cxx
|
2004-09-09 08:41:05 -04:00
|
|
|
CTest/cmCTestConfigureHandler.cxx
|
2005-06-14 14:00:45 -04:00
|
|
|
CTest/cmCTestCoverageCommand.cxx
|
2004-09-09 08:41:05 -04:00
|
|
|
CTest/cmCTestCoverageHandler.cxx
|
2012-05-01 13:35:07 -04:00
|
|
|
CTest/cmParseMumpsCoverage.cxx
|
2012-05-01 17:00:43 -04:00
|
|
|
CTest/cmParseCacheCoverage.cxx
|
2012-04-25 17:04:28 -04:00
|
|
|
CTest/cmParseGTMCoverage.cxx
|
2010-05-25 09:23:25 -04:00
|
|
|
CTest/cmParsePHPCoverage.cxx
|
2005-01-27 10:11:04 -05:00
|
|
|
CTest/cmCTestEmptyBinaryDirectoryCommand.cxx
|
2005-05-02 14:15:29 -04:00
|
|
|
CTest/cmCTestGenericHandler.cxx
|
2005-06-23 13:04:18 -04:00
|
|
|
CTest/cmCTestHandlerCommand.cxx
|
2009-02-11 11:31:25 -05:00
|
|
|
CTest/cmCTestLaunch.cxx
|
2005-06-14 14:00:45 -04:00
|
|
|
CTest/cmCTestMemCheckCommand.cxx
|
2005-05-02 14:15:29 -04:00
|
|
|
CTest/cmCTestMemCheckHandler.cxx
|
2008-07-03 09:31:33 -04:00
|
|
|
CTest/cmCTestMultiProcessHandler.cxx
|
2006-03-28 15:20:03 -05:00
|
|
|
CTest/cmCTestReadCustomFilesCommand.cxx
|
2005-01-27 10:11:04 -05:00
|
|
|
CTest/cmCTestRunScriptCommand.cxx
|
2009-08-19 08:58:36 -04:00
|
|
|
CTest/cmCTestRunTest.cxx
|
2005-05-02 14:15:29 -04:00
|
|
|
CTest/cmCTestScriptHandler.cxx
|
2005-01-27 10:11:04 -05:00
|
|
|
CTest/cmCTestSleepCommand.cxx
|
2005-02-17 10:51:52 -05:00
|
|
|
CTest/cmCTestStartCommand.cxx
|
2005-05-03 08:17:39 -04:00
|
|
|
CTest/cmCTestSubmitCommand.cxx
|
|
|
|
CTest/cmCTestSubmitHandler.cxx
|
|
|
|
CTest/cmCTestTestCommand.cxx
|
2005-05-02 14:15:29 -04:00
|
|
|
CTest/cmCTestTestHandler.cxx
|
|
|
|
CTest/cmCTestUpdateCommand.cxx
|
|
|
|
CTest/cmCTestUpdateHandler.cxx
|
2011-02-18 12:11:51 -05:00
|
|
|
CTest/cmCTestUploadCommand.cxx
|
|
|
|
CTest/cmCTestUploadHandler.cxx
|
2009-02-24 10:39:28 -05:00
|
|
|
|
|
|
|
CTest/cmCTestVC.cxx
|
|
|
|
CTest/cmCTestVC.h
|
2009-04-22 09:18:19 -04:00
|
|
|
CTest/cmCTestGlobalVC.cxx
|
|
|
|
CTest/cmCTestGlobalVC.h
|
2009-02-24 10:39:55 -05:00
|
|
|
CTest/cmCTestCVS.cxx
|
|
|
|
CTest/cmCTestCVS.h
|
|
|
|
CTest/cmCTestSVN.cxx
|
|
|
|
CTest/cmCTestSVN.h
|
2009-05-14 16:13:52 -04:00
|
|
|
CTest/cmCTestBZR.cxx
|
|
|
|
CTest/cmCTestBZR.h
|
2009-04-22 09:19:06 -04:00
|
|
|
CTest/cmCTestGIT.cxx
|
|
|
|
CTest/cmCTestGIT.h
|
2009-07-10 11:08:05 -04:00
|
|
|
CTest/cmCTestHG.cxx
|
|
|
|
CTest/cmCTestHG.h
|
2005-01-18 13:41:23 -05:00
|
|
|
)
|
2004-09-06 13:37:34 -04:00
|
|
|
|
2005-03-04 11:38:34 -05:00
|
|
|
# Build CTestLib
|
2012-08-13 13:47:32 -04:00
|
|
|
add_library(CTestLib ${CTEST_SRCS})
|
|
|
|
target_link_libraries(CTestLib CMakeLib ${CMAKE_CURL_LIBRARIES} ${CMAKE_XMLRPC_LIBRARIES})
|
2002-08-27 08:36:03 -04:00
|
|
|
|
2006-01-01 23:31:17 -05:00
|
|
|
#
|
|
|
|
# Sources for CPack
|
|
|
|
#
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CPACK_SRCS
|
2009-10-30 13:10:56 -04:00
|
|
|
CPack/cmCPackArchiveGenerator.cxx
|
2008-07-09 13:38:56 -04:00
|
|
|
CPack/cmCPackComponentGroup.cxx
|
2007-11-05 16:33:19 -05:00
|
|
|
CPack/cmCPackGeneratorFactory.cxx
|
2007-11-05 16:55:45 -05:00
|
|
|
CPack/cmCPackGenerator.cxx
|
2007-01-10 15:30:26 -05:00
|
|
|
CPack/cmCPackLog.cxx
|
2006-01-01 23:31:17 -05:00
|
|
|
CPack/cmCPackNSISGenerator.cxx
|
2007-01-10 15:30:26 -05:00
|
|
|
CPack/cmCPackSTGZGenerator.cxx
|
|
|
|
CPack/cmCPackTGZGenerator.cxx
|
2006-05-03 21:42:51 -04:00
|
|
|
CPack/cmCPackTarBZip2Generator.cxx
|
2006-05-02 17:07:16 -04:00
|
|
|
CPack/cmCPackTarCompressGenerator.cxx
|
2007-01-10 15:30:26 -05:00
|
|
|
CPack/cmCPackZIPGenerator.cxx
|
2011-11-13 22:44:53 +01:00
|
|
|
CPack/cmCPackDocumentVariables.cxx
|
|
|
|
CPack/cmCPackDocumentMacros.cxx
|
2006-01-01 23:31:17 -05:00
|
|
|
)
|
2007-08-14 08:40:40 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if(CYGWIN)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
2007-08-14 08:40:40 -04:00
|
|
|
CPack/cmCPackCygwinBinaryGenerator.cxx
|
|
|
|
CPack/cmCPackCygwinSourceGenerator.cxx
|
|
|
|
)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2010-11-09 21:37:51 +01:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if(UNIX)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
2007-08-14 08:40:40 -04:00
|
|
|
CPack/cmCPackDebGenerator.cxx
|
|
|
|
CPack/cmCPackRPMGenerator.cxx
|
|
|
|
)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2007-08-14 08:40:40 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if(APPLE)
|
|
|
|
set(CPACK_SRCS ${CPACK_SRCS}
|
2008-06-18 09:53:29 -04:00
|
|
|
CPack/cmCPackBundleGenerator.cxx
|
2009-01-22 12:12:44 -05:00
|
|
|
CPack/cmCPackDragNDropGenerator.cxx
|
2007-08-14 08:40:40 -04:00
|
|
|
CPack/cmCPackOSXX11Generator.cxx
|
|
|
|
CPack/cmCPackPackageMakerGenerator.cxx
|
|
|
|
)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2007-08-14 08:40:40 -04:00
|
|
|
|
2006-01-01 23:31:17 -05:00
|
|
|
# Build CPackLib
|
2012-08-13 13:47:32 -04:00
|
|
|
add_library(CPackLib ${CPACK_SRCS})
|
|
|
|
target_link_libraries(CPackLib CMakeLib)
|
2006-01-01 23:31:17 -05:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if(APPLE)
|
|
|
|
add_executable(cmakexbuild cmakexbuild.cxx)
|
|
|
|
target_link_libraries(cmakexbuild CMakeLib)
|
|
|
|
add_executable(OSXScriptLauncher
|
2007-01-31 13:54:02 -05:00
|
|
|
CPack/OSXScriptLauncher.cxx)
|
2012-08-13 13:47:32 -04:00
|
|
|
target_link_libraries(OSXScriptLauncher cmsys)
|
|
|
|
target_link_libraries(OSXScriptLauncher "-framework CoreFoundation")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2006-03-31 13:17:23 -05:00
|
|
|
|
2005-03-04 11:38:34 -05:00
|
|
|
# Build CMake executable
|
2012-08-13 13:47:32 -04:00
|
|
|
add_executable(cmake cmakemain.cxx)
|
|
|
|
target_link_libraries(cmake CMakeLib)
|
2003-04-25 15:17:08 -04:00
|
|
|
|
2005-03-04 11:38:34 -05:00
|
|
|
# Build special executable for running programs on Windows 98
|
2012-08-13 13:47:32 -04:00
|
|
|
if(WIN32)
|
|
|
|
if(NOT UNIX)
|
|
|
|
add_executable(cmw9xcom cmw9xcom.cxx)
|
|
|
|
target_link_libraries(cmw9xcom CMakeLib)
|
|
|
|
install_targets(/bin cmw9xcom)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
|
|
|
endif()
|
2005-03-04 11:38:34 -05:00
|
|
|
|
|
|
|
# Build CTest executable
|
2012-08-13 13:47:32 -04:00
|
|
|
add_executable(ctest ctest.cxx)
|
|
|
|
target_link_libraries(ctest CTestLib)
|
2002-05-02 15:10:19 -04:00
|
|
|
|
2006-01-01 23:31:17 -05:00
|
|
|
# Build CPack executable
|
2012-08-13 13:47:32 -04:00
|
|
|
add_executable(cpack CPack/cpack.cxx)
|
|
|
|
target_link_libraries(cpack CPackLib)
|
2006-01-01 23:31:17 -05:00
|
|
|
|
2005-03-04 11:38:34 -05:00
|
|
|
# Curses GUI
|
2012-08-13 13:47:32 -04:00
|
|
|
if(BUILD_CursesDialog)
|
|
|
|
include(${CMake_SOURCE_DIR}/Source/CursesDialog/CMakeLists.txt)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2002-05-02 15:10:19 -04:00
|
|
|
|
2007-11-02 12:03:29 -04:00
|
|
|
# Qt GUI
|
2012-08-13 13:47:32 -04:00
|
|
|
option(BUILD_QtDialog "Build Qt dialog for CMake" FALSE)
|
|
|
|
if(BUILD_QtDialog)
|
|
|
|
subdirs(QtDialog)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
|
|
|
|
include (${CMake_BINARY_DIR}/Source/LocalUserOptions.cmake OPTIONAL)
|
|
|
|
include (${CMake_SOURCE_DIR}/Source/LocalUserOptions.cmake OPTIONAL)
|
|
|
|
|
|
|
|
install_targets(/bin cmake)
|
|
|
|
install_targets(/bin ctest)
|
|
|
|
install_targets(/bin cpack)
|
|
|
|
if(APPLE)
|
|
|
|
install_targets(/bin cmakexbuild)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
|
|
|
|
install_files(${CMAKE_DATA_DIR}/include cmCPluginAPI.h)
|