[Cmake-commits] CMake branch, next, updated. v2.8.4-1247-gdf4191b

Brad King brad.king at kitware.com
Tue Mar 22 16:29:48 EDT 2011


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, next has been updated
       via  df4191ba35c43626f82814d24fe1090fc59d5548 (commit)
       via  08428ba38aa0c11567cd795322533138e66553c4 (commit)
      from  a53ca74aa98e356ba4eadcf69f786998bc63d5f9 (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=df4191ba35c43626f82814d24fe1090fc59d5548
commit df4191ba35c43626f82814d24fe1090fc59d5548
Merge: a53ca74 08428ba
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Mar 22 16:29:46 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Mar 22 16:29:46 2011 -0400

    Merge topic 'generator-expression-dot-in-name-issue-12002' into next
    
    08428ba Allow '.' in target names in generator expressions (#12002)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=08428ba38aa0c11567cd795322533138e66553c4
commit 08428ba38aa0c11567cd795322533138e66553c4
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Mar 22 16:25:32 2011 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Mar 22 16:26:20 2011 -0400

    Allow '.' in target names in generator expressions (#12002)
    
    Simply add this character to the allowed list in the regular expression
    used to parse generator expression components.

diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx
index 8710dfc..f88ab0b 100644
--- a/Source/cmGeneratorExpression.cxx
+++ b/Source/cmGeneratorExpression.cxx
@@ -23,7 +23,7 @@ cmGeneratorExpression::cmGeneratorExpression(
   this->TargetInfo.compile("^\\$<TARGET"
                            "(|_SONAME|_LINKER)"  // File with what purpose?
                            "_FILE(|_NAME|_DIR):" // Filename component.
-                           "([A-Za-z0-9_-]+)"    // Target name.
+                           "([A-Za-z0-9_.-]+)"   // Target name.
                            ">$");
 }
 

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

Summary of changes:
 Source/cmGeneratorExpression.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list