[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2396-gcab81f2

2013-03-06 Thread Stephen Kelly
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  cab81f23cb59bd5cbd50970a91d42f4a465a79e6 (commit)
   via  eed2637e99955c8c762ad1deea65877c43bd1a22 (commit)
   via  254687d31f2f45b0d3ce9085c013ab0e15b360de (commit)
   via  efdf152fe1582be3e39f3a16e0ddaeb386fe1c20 (commit)
  from  d559bec27163c17935eb2cbeab0e41cf0e8fbdc5 (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=cab81f23cb59bd5cbd50970a91d42f4a465a79e6
commit cab81f23cb59bd5cbd50970a91d42f4a465a79e6
Merge: d559bec eed2637
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 11:46:39 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 11:46:39 2013 -0500

Merge topic 'fix-transitive-target-names' into next

eed2637 Extend the range of valid target names with the + sign.
254687d Only process transitive interface properties for valid target names.
efdf152 CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eed2637e99955c8c762ad1deea65877c43bd1a22
commit eed2637e99955c8c762ad1deea65877c43bd1a22
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 17:26:40 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 17:43:23 2013 +0100

Extend the range of valid target names with the + sign.

As noted in #13986, this character can commonly be used for target
names, such as those containing 'c++'.

Suggested-By: Benjamin Kloster

diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx
index 7ea58fa..3f59129 100644
--- a/Source/cmGeneratorExpression.cxx
+++ b/Source/cmGeneratorExpression.cxx
@@ -393,7 +393,7 @@ bool cmGeneratorExpression::IsValidTargetName(const 
std::string input)
   cmsys::RegularExpression targetNameValidator;
   // The ':' is supported to allow use with IMPORTED targets. At least
   // Qt 4 and 5 IMPORTED targets use ':' as the namespace delimiter.
-  targetNameValidator.compile(^[A-Za-z0-9_.:-]+$);
+  targetNameValidator.compile(^[A-Za-z0-9_.:+-]+$);
 
   return targetNameValidator.find(input.c_str());
 }
diff --git a/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt 
b/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt
index b13c13d..e4cb217 100644
--- a/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt
+++ b/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt
@@ -102,7 +102,11 @@ target_compile_definitions(depG INTERFACE
 TEST_DEF
 )
 
+# Linking to a target containing a + should be non-fatal.
+add_library(wrapc++ empty.cpp)
+
 add_executable(targetC targetC.cpp)
+target_link_libraries(targetC wrapc++)
 # The TARGET_PROPERTY expression is duplicated below to test that there is no
 # shortcutting of the evaluation by returning an empty string.
 set(_exe_test $STREQUAL:$TARGET_PROPERTY:TYPE,EXECUTABLE)

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=254687d31f2f45b0d3ce9085c013ab0e15b360de
commit 254687d31f2f45b0d3ce9085c013ab0e15b360de
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 17:15:57 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 17:42:08 2013 +0100

Only process transitive interface properties for valid target names.

Commit a1c4905f (Use the link information as a source of compile
definitions and includes., 2013-02-12) introduced the use of link
information as the source of target properties via the TARGET_PROPERTY
generator expression. This generator expression has a strict
interpretation of a valid target name and emits a fatal error for
invalid names.

Ensure that only targets with names valid for use with TARGET_PROPERTY
or targets which are determined by generator expressions are processed
by it. This means that at worst, invalid target names do not participate
in the transitive evaluation of properties, but the validation
generator expression can be extended where needed to resolve that.

diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index f38b16e..d46325b 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -2898,7 +2898,8 @@ std::vectorstd::string 
cmTarget::GetIncludeDirectories(const char *config)
 ge.Parse(it-Value);
   std::string result = cge-Evaluate(this-Makefile, config,
 false, this, 0, 0);
-  if (!this-Makefile-FindTargetToUse(result.c_str()))
+  if (!cmGeneratorExpression::IsValidTargetName(result.c_str())
+  || !this-Makefile-FindTargetToUse(result.c_str()))
 

[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2398-g5bc2cc7

2013-03-06 Thread Stephen Kelly
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  5bc2cc79977e38bd639dd300f1f2ea67bced4de7 (commit)
   via  192228225995366728ea9f94f35a070636c7b1f0 (commit)
  from  cab81f23cb59bd5cbd50970a91d42f4a465a79e6 (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=5bc2cc79977e38bd639dd300f1f2ea67bced4de7
commit 5bc2cc79977e38bd639dd300f1f2ea67bced4de7
Merge: cab81f2 1922282
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 11:50:52 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 11:50:52 2013 -0500

Merge topic 'update-find_package-docs' into next

1922282 Mention that IMPORTED targets may be created by a find_package call.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=192228225995366728ea9f94f35a070636c7b1f0
commit 192228225995366728ea9f94f35a070636c7b1f0
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Tue Mar 5 23:01:22 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 17:50:20 2013 +0100

Mention that IMPORTED targets may be created by a find_package call.

diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 470ceca..0122dc1 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -95,7 +95,8 @@ void cmFindPackageCommand::GenerateDocumentation()
 Finds and loads settings from an external project.  
 package_FOUND will be set to indicate whether the package was found.  
 When the package is found package-specific information is provided 
-through variables documented by the package itself.  
+through variables and imported targets documented by the package
+itself.  
 The QUIET option disables messages if the package cannot be found.  
 The MODULE option disables the second signature documented below.  
 The REQUIRED option stops processing with an error message if the 

---

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


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


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2400-gff923e5

2013-03-06 Thread Stephen Kelly
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  ff923e5b7ab8aabdf2e84efd8942e566d6a946a2 (commit)
   via  a85ddd7bf0f266fda093b5b3b05e384bd8189af5 (commit)
  from  5bc2cc79977e38bd639dd300f1f2ea67bced4de7 (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=ff923e5b7ab8aabdf2e84efd8942e566d6a946a2
commit ff923e5b7ab8aabdf2e84efd8942e566d6a946a2
Merge: 5bc2cc7 a85ddd7
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 11:56:23 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 11:56:23 2013 -0500

Merge topic 'fix-transitive-target-names' into next

a85ddd7 Add missing file.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a85ddd7bf0f266fda093b5b3b05e384bd8189af5
commit a85ddd7bf0f266fda093b5b3b05e384bd8189af5
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 17:54:50 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 17:54:50 2013 +0100

Add missing file.

diff --git a/Tests/CMakeCommands/target_link_libraries/empty.cpp 
b/Tests/CMakeCommands/target_link_libraries/empty.cpp
new file mode 100644
index 000..ab32cf6
--- /dev/null
+++ b/Tests/CMakeCommands/target_link_libraries/empty.cpp
@@ -0,0 +1 @@
+// No content

---

Summary of changes:
 .../target_link_libraries}/empty.cpp   |0
 1 files changed, 0 insertions(+), 0 deletions(-)
 copy Tests/{QtAutomoc = CMakeCommands/target_link_libraries}/empty.cpp (100%)


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


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2404-g2a21835

2013-03-06 Thread Rolf Eike Beer
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  2a21835ddf6878d001b36ebb6e3edcdee92af380 (commit)
   via  20681c9e0573fcc7f1a9870c54a4edd5fde14568 (commit)
  from  32c56747a95cb291064cd0f1ec392467651de19d (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=2a21835ddf6878d001b36ebb6e3edcdee92af380
commit 2a21835ddf6878d001b36ebb6e3edcdee92af380
Merge: 32c5674 20681c9
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed Mar 6 12:05:30 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 12:05:30 2013 -0500

Merge topic 'Win-HOST_SYSTEM_PROCESSOR' into next

20681c9 fix Windows processor detection


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=20681c9e0573fcc7f1a9870c54a4edd5fde14568
commit 20681c9e0573fcc7f1a9870c54a4edd5fde14568
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed Mar 6 18:04:53 2013 +0100
Commit: Rolf Eike Beer e...@sf-mail.de
CommitDate: Wed Mar 6 18:04:53 2013 +0100

fix Windows processor detection

Thanks to Martin Koller for this.

diff --git a/Modules/CMakeDetermineSystem.cmake 
b/Modules/CMakeDetermineSystem.cmake
index 20c1541..3a95d2a 100644
--- a/Modules/CMakeDetermineSystem.cmake
+++ b/Modules/CMakeDetermineSystem.cmake
@@ -73,7 +73,7 @@ if(CMAKE_HOST_UNIX)
 else()
   if(CMAKE_HOST_WIN32)
 set (CMAKE_HOST_SYSTEM_NAME Windows)
-if (ENV{PROCESSOR_ARCHITEW6432})
+if (DEFINED ENV{PROCESSOR_ARCHITEW6432})
   set (CMAKE_HOST_SYSTEM_PROCESSOR $ENV{PROCESSOR_ARCHITEW6432})
 else()
   set (CMAKE_HOST_SYSTEM_PROCESSOR $ENV{PROCESSOR_ARCHITECTURE})

---

Summary of changes:
 Modules/CMakeDetermineSystem.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


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


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2406-g8eefc48

2013-03-06 Thread Stephen Kelly
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  8eefc48a4659cc3b4d341990693a01dd77974863 (commit)
   via  8cdb81f3c17490aee16acbb656f388bb0d7deddb (commit)
  from  2a21835ddf6878d001b36ebb6e3edcdee92af380 (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=8eefc48a4659cc3b4d341990693a01dd77974863
commit 8eefc48a4659cc3b4d341990693a01dd77974863
Merge: 2a21835 8cdb81f
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 15:34:55 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 15:34:55 2013 -0500

Merge topic 'update-find_package-docs' into next

8cdb81f Fix whitespace.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8cdb81f3c17490aee16acbb656f388bb0d7deddb
commit 8cdb81f3c17490aee16acbb656f388bb0d7deddb
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 21:32:29 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 21:32:29 2013 +0100

Fix whitespace.

diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 0122dc1..aa3a73d 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -95,7 +95,7 @@ void cmFindPackageCommand::GenerateDocumentation()
 Finds and loads settings from an external project.  
 package_FOUND will be set to indicate whether the package was found.  
 When the package is found package-specific information is provided 
-through variables and imported targets documented by the package
+through variables and imported targets documented by the package 
 itself.  
 The QUIET option disables messages if the package cannot be found.  
 The MODULE option disables the second signature documented below.  

---

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


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


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2408-g1fa6f91

2013-03-06 Thread Stephen Kelly
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  1fa6f9172ebb8db4c8a4f2d2b63aa91ae5d37b50 (commit)
   via  b73e05d7c993854721a5798f852d6afb726a (commit)
  from  8eefc48a4659cc3b4d341990693a01dd77974863 (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=1fa6f9172ebb8db4c8a4f2d2b63aa91ae5d37b50
commit 1fa6f9172ebb8db4c8a4f2d2b63aa91ae5d37b50
Merge: 8eefc48 b73e05d
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 15:35:49 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 15:35:49 2013 -0500

Merge topic 'update-find_package-docs' into next

b73e05d Mention that IMPORTED targets may be created by a find_package call.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b73e05d7c993854721a5798f852d6afb726a
commit b73e05d7c993854721a5798f852d6afb726a
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Tue Mar 5 23:01:22 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 21:35:20 2013 +0100

Mention that IMPORTED targets may be created by a find_package call.

diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 470ceca..aa3a73d 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -95,7 +95,8 @@ void cmFindPackageCommand::GenerateDocumentation()
 Finds and loads settings from an external project.  
 package_FOUND will be set to indicate whether the package was found.  
 When the package is found package-specific information is provided 
-through variables documented by the package itself.  
+through variables and imported targets documented by the package 
+itself.  
 The QUIET option disables messages if the package cannot be found.  
 The MODULE option disables the second signature documented below.  
 The REQUIRED option stops processing with an error message if the 

---

Summary of changes:


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


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2410-g98bc278

2013-03-06 Thread Stephen Kelly
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  98bc278ef6ef299980e46f21a2b916b7b10793e4 (commit)
   via  531067f69ef8d9e9b49a64a7ddc2bf9baeaa2c54 (commit)
  from  1fa6f9172ebb8db4c8a4f2d2b63aa91ae5d37b50 (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=98bc278ef6ef299980e46f21a2b916b7b10793e4
commit 98bc278ef6ef299980e46f21a2b916b7b10793e4
Merge: 1fa6f91 531067f
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 16:52:56 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 16:52:56 2013 -0500

Merge topic 'fix-transitive-target-names' into next

531067f Don't test + in target names on Borland.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=531067f69ef8d9e9b49a64a7ddc2bf9baeaa2c54
commit 531067f69ef8d9e9b49a64a7ddc2bf9baeaa2c54
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 22:51:39 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 22:51:39 2013 +0100

Don't test + in target names on Borland.

It fails with such target names as it strips the '+':

 Fatal: Unable to open file 'WRAPC.LIB'

 http://open.cdash.org/testDetails.php?test=179971699build=2837755

diff --git a/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt 
b/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt
index e4cb217..0309e1d 100644
--- a/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt
+++ b/Tests/CMakeCommands/target_link_libraries/CMakeLists.txt
@@ -102,11 +102,14 @@ target_compile_definitions(depG INTERFACE
 TEST_DEF
 )
 
-# Linking to a target containing a + should be non-fatal.
-add_library(wrapc++ empty.cpp)
 
 add_executable(targetC targetC.cpp)
-target_link_libraries(targetC wrapc++)
+if(NOT BORLAND)
+  # Linking to a target containing a + should be non-fatal, though it does
+  # not work at all on Borland
+  add_library(wrapc++ empty.cpp)
+  target_link_libraries(targetC wrapc++)
+endif()
 # The TARGET_PROPERTY expression is duplicated below to test that there is no
 # shortcutting of the evaluation by returning an empty string.
 set(_exe_test $STREQUAL:$TARGET_PROPERTY:TYPE,EXECUTABLE)

---

Summary of changes:
 .../target_link_libraries/CMakeLists.txt   |9 ++---
 1 files changed, 6 insertions(+), 3 deletions(-)


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


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2412-g13904cf

2013-03-06 Thread Stephen Kelly
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  13904cf9790feea6c8566f85bf2965d0768c588d (commit)
   via  adcc00b16a24d66f7cab5336f31b14a32d3240a7 (commit)
  from  98bc278ef6ef299980e46f21a2b916b7b10793e4 (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=13904cf9790feea6c8566f85bf2965d0768c588d
commit 13904cf9790feea6c8566f85bf2965d0768c588d
Merge: 98bc278 adcc00b
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 16:55:57 2013 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Mar 6 16:55:57 2013 -0500

Merge topic 'clean-target_link_libraries-test' into next

adcc00b Remove unused parameters from target_link_libraries tests.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=adcc00b16a24d66f7cab5336f31b14a32d3240a7
commit adcc00b16a24d66f7cab5336f31b14a32d3240a7
Author: Stephen Kelly steve...@gmail.com
AuthorDate: Wed Mar 6 22:54:49 2013 +0100
Commit: Stephen Kelly steve...@gmail.com
CommitDate: Wed Mar 6 22:54:49 2013 +0100

Remove unused parameters from target_link_libraries tests.

diff --git a/Tests/CMakeCommands/target_link_libraries/targetA.cpp 
b/Tests/CMakeCommands/target_link_libraries/targetA.cpp
index 559aef7..d1321a1 100644
--- a/Tests/CMakeCommands/target_link_libraries/targetA.cpp
+++ b/Tests/CMakeCommands/target_link_libraries/targetA.cpp
@@ -5,7 +5,7 @@
 
 #include subdirlib.h
 
-int main(int argc, char **argv)
+int main(int, char **)
 {
   DepA a;
   DepB b;
diff --git a/Tests/CMakeCommands/target_link_libraries/targetB.cpp 
b/Tests/CMakeCommands/target_link_libraries/targetB.cpp
index 063d63a..0913a57 100644
--- a/Tests/CMakeCommands/target_link_libraries/targetB.cpp
+++ b/Tests/CMakeCommands/target_link_libraries/targetB.cpp
@@ -1,7 +1,7 @@
 
 #include depD.h
 
-int main(int argc, char **argv)
+int main(int, char **)
 {
   DepD d;
   DepA a = d.getA();
diff --git a/Tests/CMakeCommands/target_link_libraries/targetC.cpp 
b/Tests/CMakeCommands/target_link_libraries/targetC.cpp
index ff6ba66..a4ef636 100644
--- a/Tests/CMakeCommands/target_link_libraries/targetC.cpp
+++ b/Tests/CMakeCommands/target_link_libraries/targetC.cpp
@@ -8,7 +8,7 @@
 #error Expected TEST_DEF definition
 #endif
 
-int main(int argc, char **argv)
+int main(int, char **)
 {
   DepG g;
 

---

Summary of changes:
 .../target_link_libraries/targetA.cpp  |2 +-
 .../target_link_libraries/targetB.cpp  |2 +-
 .../target_link_libraries/targetC.cpp  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


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


[Cmake-commits] CMake branch, master, updated. v2.8.10.2-816-g06a45e8

2013-03-06 Thread Kitware Robot
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  06a45e816958065849c30dd3029db538aa7b399e (commit)
  from  efdf152fe1582be3e39f3a16e0ddaeb386fe1c20 (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=06a45e816958065849c30dd3029db538aa7b399e
commit 06a45e816958065849c30dd3029db538aa7b399e
Author: Kitware Robot kwro...@kitware.com
AuthorDate: Thu Mar 7 00:01:10 2013 -0500
Commit: Kitware Robot kwro...@kitware.com
CommitDate: Thu Mar 7 00:01:10 2013 -0500

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index d20ec62..a42e5b6 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -2,5 +2,5 @@
 set(CMake_VERSION_MAJOR 2)
 set(CMake_VERSION_MINOR 8)
 set(CMake_VERSION_PATCH 10)
-set(CMake_VERSION_TWEAK 20130306)
+set(CMake_VERSION_TWEAK 20130307)
 #set(CMake_VERSION_RC 1)

---

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


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