This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  ec85306025ae787e08d4ce097fde966f1809c74f (commit)
       via  e48d84209cde93b43fcfb305897b4f52cd18a55f (commit)
       via  089fe1c13d8fa73be5182162a855c17351d1f918 (commit)
       via  179f49560286e2e322b9b0cf5d0a277b7634540f (commit)
       via  e7b579bd01690f27c82ee9cbda4b7023f4a3d6c9 (commit)
       via  77cecb778ff1882d87401c1055ec06585462f787 (commit)
       via  0b92602b816e2584db3781b120a1e5200da72ada (commit)
       via  0fa7f69c0e2cdcd8b7ece400651ee7821b2ede4b (commit)
       via  2c3654c3de718fe822f8960063373774fc019494 (commit)
       via  d4297d5697cd10114f8accb7a233aa1f5ebc50ab (commit)
       via  df4d2b28b24a3172daf1290070199633f7c46cf0 (commit)
       via  7ceeba992b4fb35ca05760b3170e68f41dfc1bb5 (commit)
       via  30268b46f8237f25c82858693c000f5da8ede6ad (commit)
      from  020525845a3999078e4f7897d293c5aeab20af87 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ec85306025ae787e08d4ce097fde966f1809c74f
commit ec85306025ae787e08d4ce097fde966f1809c74f
Merge: 0205258 e48d842
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Tue Feb 5 14:46:43 2013 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Tue Feb 5 14:46:43 2013 -0500

    Merge topic 'tll-includes-defines'
    
    e48d842 Cache context-independent includes on evaluation.
    089fe1c Optimize genex evaluation for includes and defines.
    179f495 find_package: Reword <package>_NO_INTERFACES documentation
    e7b579b Test workaround of bad interface include directories from depends.
    77cecb7 Add includes and compile definitions with target_link_libraries.
    0b92602 Add the $<LINKED:...> generator expression.
    0fa7f69 Add API to check if we're reading a includes or defines property.
    2c3654c Add a way to exclude INTERFACE properties from exported targets.
    d4297d5 Export targets to a targets file, not a Config file.
    df4d2b2 Make it an error for INSTALL_PREFIX to be evaluated.
    7ceeba9 Advance more when preprocessing exported strings.
    30268b4 Handle reading empty properties defined by the link interface.


-----------------------------------------------------------------------

Summary of changes:
 Source/cmDocumentGeneratorExpressions.h            |    8 ++
 Source/cmExportFileGenerator.cxx                   |   75 ++++++++++--
 Source/cmExportFileGenerator.h                     |    4 +-
 Source/cmFindPackageCommand.cxx                    |   20 +++
 Source/cmGeneratorExpression.cxx                   |    8 +-
 Source/cmGeneratorExpression.h                     |    5 +
 Source/cmGeneratorExpressionDAGChecker.cxx         |   42 +++++++
 Source/cmGeneratorExpressionDAGChecker.h           |    6 +-
 Source/cmGeneratorExpressionEvaluator.cxx          |  127 +++++++++++++++++++-
 Source/cmGeneratorExpressionEvaluator.h            |    1 +
 Source/cmTarget.cxx                                |   41 +++++--
 Source/cmTarget.h                                  |    6 +-
 Source/cmTargetLinkLibrariesCommand.cxx            |   53 ++++++++
 Source/cmTargetLinkLibrariesCommand.h              |    9 ++
 .../target_compile_definitions/CMakeLists.txt      |    6 +
 .../target_compile_definitions/consumer.cpp        |    4 +
 .../target_include_directories/CMakeLists.txt      |   11 ++-
 .../target_include_directories/consumer.cpp        |    5 +
 .../target_link_libraries/CMakeLists.txt           |   25 ++++-
 Tests/CMakeCommands/target_link_libraries/depG.cpp |    7 +
 Tests/CMakeCommands/target_link_libraries/depG.h   |    7 +
 .../target_link_libraries/targetC.cpp              |   16 +++
 Tests/CompatibleInterface/CMakeLists.txt           |   14 ++-
 Tests/ExportImport/Export/CMakeLists.txt           |   41 ++++---
 Tests/ExportImport/Import/A/CMakeLists.txt         |   18 +---
 Tests/ExportImport/Import/CMakeLists.txt           |    5 +
 .../Import/package_new_new/CMakeLists.txt          |   23 ++++
 .../Import/package_new_old/CMakeLists.txt          |   24 ++++
 .../Import/package_old_old/CMakeLists.txt          |   24 ++++
 Tests/GeneratorExpression/CMakeLists.txt           |    1 -
 Tests/GeneratorExpression/check-part2.cmake        |    1 -
 .../TargetIncludeDirectories/CMakeLists.txt        |   41 +++++++
 Tests/Qt4Targets/CMakeLists.txt                    |   19 ---
 .../BadInstallPrefix-result.txt}                   |    0
 .../BadInstallPrefix-stderr.txt                    |    9 ++
 ...{BadTargetName.cmake => BadInstallPrefix.cmake} |    2 +-
 .../GeneratorExpression/RunCMakeTest.cmake         |    1 +
 .../BadLinked-result.txt}                          |    0
 .../BadLinked-stderr.txt                           |    7 +
 .../{BadInvalidName1.cmake => BadLinked.cmake}     |    2 +-
 .../RunCMakeTest.cmake                             |    1 +
 41 files changed, 623 insertions(+), 96 deletions(-)
 create mode 100644 Tests/CMakeCommands/target_link_libraries/depG.cpp
 create mode 100644 Tests/CMakeCommands/target_link_libraries/depG.h
 create mode 100644 Tests/CMakeCommands/target_link_libraries/targetC.cpp
 create mode 100644 Tests/ExportImport/Import/package_new_new/CMakeLists.txt
 create mode 100644 Tests/ExportImport/Import/package_new_old/CMakeLists.txt
 create mode 100644 Tests/ExportImport/Import/package_old_old/CMakeLists.txt
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => 
GeneratorExpression/BadInstallPrefix-result.txt} (100%)
 create mode 100644 
Tests/RunCMake/GeneratorExpression/BadInstallPrefix-stderr.txt
 copy Tests/RunCMake/GeneratorExpression/{BadTargetName.cmake => 
BadInstallPrefix.cmake} (65%)
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => 
TargetPropertyGeneratorExpressions/BadLinked-result.txt} (100%)
 create mode 100644 
Tests/RunCMake/TargetPropertyGeneratorExpressions/BadLinked-stderr.txt
 copy Tests/RunCMake/TargetPropertyGeneratorExpressions/{BadInvalidName1.cmake 
=> BadLinked.cmake} (72%)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to