[cmake-developers] CMake 2.8.11-rc4 ready for testing!

2013-05-08 Thread Robert Maynard
The CMake 2.8.11 release candidate continues. This is the last RC
unless a critical, must-fix issue is found. You can find the source
and binaries here:
http://www.cmake.org/files/v2.8/?C=M;O=D

Some of the notable changes in this release are:
- Introduced Target Usage Requirements
  - Targets can specify usage requirements for their consumers such as
include directories
and preprocessor definitions; previously only link dependencies
were supported
  - target_link_libraries(myexe yourlib) can now build myexe sources
with requirements specified
by yourlib
  - Added target_include_directories and target_compile_definitions
commands with
PUBLIC/PRIVATE/INTERFACE options
  - See design and development discussion at
http://community.kde.org/Frameworks/Epics/CMake_target_usage_requirements

- Introduced a Generator Toolset selection for VS = 10 and Xcode = 3
  - Tell the IDEs which compiler toolchain to use
  - ex. Use VS 9 tools under VS 10: -G “Visual Studio 10” -T “v90”
- Introduced ExternalData Module
- Keep source trees lightweight by storing data separately
- Reference data unambiguously from source tree by content hash
- Fetch on-demand during build from local or remote resources
- CMake: Sublime Text Generator added that supports both Make and Ninja
- CMake: Added support for Texas Instruments C6 and up compilers
- CMake: Improve OpenBSD support
- CMake: Support for Windows CE with VS 8 and 9 generators
- CPack: Added Support for 64bit NSIS
- CPack: Added WiX Package Generator
- ExternalProject: Will run git fetch less often
- FindBoost: Major overhaul of searching and result caching
- FindCUDA: Now has support for separable compilation
- FindQt4: Overall improvements to finding Qt and importing targets
- FindSquish: Added support for squish 4
- GetPrerequisites: Port to MinGW with objdump

The bug tracker change log page for this version is at:
http://public.kitware.com/Bug/changelog_page.php?version_id=103

Following is the complete list of changes in this rc since the
previous rc. Please try this
version of CMake on your projects and report any issues to the list or
the bug tracker. This
release candidate will become the final release for 2.8.11 unless a
serious issue is reported.

Changes in CMake 2.8.11-rc4 (since 2.8.11-rc3)
--
Brad King (1):
  target_link_libraries: Update usage requirements documentation

Stephen Kelly (3):
  Centralize maintenance of usage requirement include directories
  Fix include dir propagation from conditionally linked targets
  Memoize usage requirement include directories in a config-specific map
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [cmake-developers] CMake 2.8.11-rc4 ready for testing!

2013-05-08 Thread Stephen Kelly
Robert Maynard wrote:

 The CMake 2.8.11 release candidate continues. This is the last RC
 unless a critical, must-fix issue is found. You can find the source
 and binaries here:
 http://www.cmake.org/files/v2.8/?C=M;O=D

Just a reminder to report issues as soon as you find them, even if you 
haven't fully investigated the problem. 

All your working projects should continue to work without modification. 
Please test this release candidate and let us know if something does not 
succeed.

Thanks,

Steve.


--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


[cmake-developers] review request: fix-protobuf-threads

2013-05-08 Thread Matthew Woehlke
After chatting with Marcus how to resolve ParaView link errors due to 
things using Google Protobuf needing to link to pthread, I have updated 
FindProtobuf.cmake to also find the pthread library on UNIX platforms 
and include it in PROTOBUF_LIBRARIES.


This should fix link errors in a number of projects and/or remove the 
need for downstream users to add pthread themselves when using protobuf.


The branch (name in summary) is on stage. Please have a look if this is 
reasonable and can be merged to master once 2.8.11 is out.


Thanks,

--
Matthew

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


[CMake] can't configure GTEST_ROOT with ccmake or cmake-gui

2013-05-08 Thread Witold Eryk Wolski
Hi,

would like to start using gtest with a project. I use cmake to configure 
the project.

So I was pleased to see that :
cmake 2.8 ships with an FindCTest.cmake file. 

However FindCTest.cmake expects me either to set en env variable CTEST_ROOT 
or pass it as an cmake  ariable (I guess with -DCTEST_ROOT ?)

However, the convention I have so far is that all dependencies can be 
configured using ccmake or cmake-gui.
Therefore, I would like to do the same with gtest. However, can't find a 
way to set GTEST_ROOT with ccmake or cmake-gui.

Can I add anything, and exactly what, to my CMakeLists.txt file so that 
CTEST_ROOT will show up in ccmake in order to be set properly?


regards
Witold




--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

[CMake] CMake 2.8.11-rc4 ready for testing!

2013-05-08 Thread Robert Maynard
The CMake 2.8.11 release candidate continues. This is the last RC
unless a critical, must-fix issue is found. You can find the source
and binaries here:
http://www.cmake.org/files/v2.8/?C=M;O=D

Some of the notable changes in this release are:
- Introduced Target Usage Requirements
  - Targets can specify usage requirements for their consumers such as
include directories
and preprocessor definitions; previously only link dependencies
were supported
  - target_link_libraries(myexe yourlib) can now build myexe sources
with requirements specified
by yourlib
  - Added target_include_directories and target_compile_definitions
commands with
PUBLIC/PRIVATE/INTERFACE options
  - See design and development discussion at
http://community.kde.org/Frameworks/Epics/CMake_target_usage_requirements

- Introduced a Generator Toolset selection for VS = 10 and Xcode = 3
  - Tell the IDEs which compiler toolchain to use
  - ex. Use VS 9 tools under VS 10: -G “Visual Studio 10” -T “v90”
- Introduced ExternalData Module
- Keep source trees lightweight by storing data separately
- Reference data unambiguously from source tree by content hash
- Fetch on-demand during build from local or remote resources
- CMake: Sublime Text Generator added that supports both Make and Ninja
- CMake: Added support for Texas Instruments C6 and up compilers
- CMake: Improve OpenBSD support
- CMake: Support for Windows CE with VS 8 and 9 generators
- CPack: Added Support for 64bit NSIS
- CPack: Added WiX Package Generator
- ExternalProject: Will run git fetch less often
- FindBoost: Major overhaul of searching and result caching
- FindCUDA: Now has support for separable compilation
- FindQt4: Overall improvements to finding Qt and importing targets
- FindSquish: Added support for squish 4
- GetPrerequisites: Port to MinGW with objdump

The bug tracker change log page for this version is at:
http://public.kitware.com/Bug/changelog_page.php?version_id=103

Following is the complete list of changes in this rc since the
previous rc. Please try this
version of CMake on your projects and report any issues to the list or
the bug tracker. This
release candidate will become the final release for 2.8.11 unless a
serious issue is reported.

Changes in CMake 2.8.11-rc4 (since 2.8.11-rc3)
--
Brad King (1):
  target_link_libraries: Update usage requirements documentation

Stephen Kelly (3):
  Centralize maintenance of usage requirement include directories
  Fix include dir propagation from conditionally linked targets
  Memoize usage requirement include directories in a config-specific map
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] can't configure GTEST_ROOT with ccmake or cmake-gui

2013-05-08 Thread Nils Gladitz
Assuming you mean GTEST rather than CTEST (you seem to use them 
interchangeably) I think something like this in your CMakeLists.txt 
should make the option show up in cmake-gui/ccmake:

set(GTEST_ROOT  CACHE PATH Google Test root directory)

Nils

On 05/08/2013 01:21 PM, Witold Eryk Wolski wrote:

Hi,

would like to start using gtest with a project. I use cmake to 
configure the project.


So I was pleased to see that :
cmake 2.8 ships with an FindCTest.cmake file.

However FindCTest.cmake expects me either to set en env variable 
CTEST_ROOT or pass it as an cmake  ariable (I guess with -DCTEST_ROOT ?)


However, the convention I have so far is that all dependencies can be 
configured using ccmake or cmake-gui.
Therefore, I would like to do the same with gtest. However, can't find 
a way to set GTEST_ROOT with ccmake or cmake-gui.


Can I add anything, and exactly what, to my CMakeLists.txt file so 
that CTEST_ROOT will show up in ccmake in order to be set properly?



regards
Witold






--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] ncurses.h compile problem

2013-05-08 Thread Bill Hoffman

On 5/6/2013 7:04 PM, smu johnson wrote:

Hi.

Long story short, I am trying to compile cmake using my own compiled
ncurses library, and it complains that it can't find ncurses/ncurses.h.

I had no problem compiling tmux and telling it where ncurses libraries
and includes where, though.  And the symlink definitely exists.

sjohnson@li213-89:~$ ls -l $HOME/local/include/ncurses/ncurses.h
lrwxrwxrwx 1 sjohnson sjohnson 8 May  6 19:48
/home/sjohnson/local/include/ncurses/ncurses.h - curses.h

The configure strings I have tried:

1) CFLAGS=-I$HOME/local/include/ncurses LDFLAGS=-L$HOME/local/lib
./configure --prefix=$HOME/local
2) CFLAGS=-I$HOME/local/include LDFLAGS=-L$HOME/local/lib
./configure --prefix=$HOME/local

... but still the same error when that finishes and I type ''make'':
ncurses/ncurses.h: No such file or directory

Googling just simply that error message in quotes shows CMAKE as the
first result, so it seems like I'm not the only one.

Any help greatly appreciated.

You don't want to mess around with -I stuff.  You want to change the 
cmake cache to have CURSES_INCLUDE_DIR set correctly.   See 
FindCurses.cmake for more information.


-Bill

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2902-g1a9b54a

2013-05-08 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  1a9b54a17d52bed00d546ddfaab68b4b50d5c028 (commit)
   via  30967cf211fcf3a85aecbe132b5469b1f754f31c (commit)
  from  bed399f33e43a81e3b19c707de89cfbd43736d71 (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=1a9b54a17d52bed00d546ddfaab68b4b50d5c028
commit 1a9b54a17d52bed00d546ddfaab68b4b50d5c028
Merge: bed399f 30967cf
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 08:15:11 2013 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed May 8 08:15:11 2013 -0400

Merge topic 'MemChecker-improvements' into next

30967cf Memchecker tests: also set configuration type


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=30967cf211fcf3a85aecbe132b5469b1f754f31c
commit 30967cf211fcf3a85aecbe132b5469b1f754f31c
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 14:14:47 2013 +0200
Commit: Rolf Eike Beer e...@sf-mail.de
CommitDate: Wed May 8 14:14:47 2013 +0200

Memchecker tests: also set configuration type

diff --git a/Tests/CTestTestMemcheck/CMakeLists.txt 
b/Tests/CTestTestMemcheck/CMakeLists.txt
index 59400ab..374b25f 100644
--- a/Tests/CTestTestMemcheck/CMakeLists.txt
+++ b/Tests/CTestTestMemcheck/CMakeLists.txt
@@ -45,6 +45,7 @@ function(gen_mc_test_internal NAME CHECKER)
 endforeach()
 add_test(NAME CTestTestMemcheck${NAME}
 COMMAND ${CMAKE_CTEST_COMMAND}
+-C ${CTEST_CONFIGURATION_TYPE}
 -S ${CMAKE_CURRENT_BINARY_DIR}/${NAME}/test.cmake -V
 --output-log ${CMAKE_CURRENT_BINARY_DIR}/${NAME}/testOutput.log
 ${ARGN}

---

Summary of changes:
 Tests/CTestTestMemcheck/CMakeLists.txt |1 +
 1 files changed, 1 insertions(+), 0 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-2905-g894e00b

2013-05-08 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  894e00bded28af3e7ca3eb14c283d4e77253a9bd (commit)
   via  5a768f7f169e49b76c33fa5210297ce5f79aed70 (commit)
   via  00a30386cfe2e1a9cb842db17505b3baf07e119c (commit)
  from  1a9b54a17d52bed00d546ddfaab68b4b50d5c028 (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=894e00bded28af3e7ca3eb14c283d4e77253a9bd
commit 894e00bded28af3e7ca3eb14c283d4e77253a9bd
Merge: 1a9b54a 5a768f7
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 09:09:37 2013 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed May 8 09:09:37 2013 -0400

Merge topic 'MemChecker-improvements' into next

5a768f7 tests: try to fix test failures due to stale files
00a3038 tests: remove useless 2nd subtest from DummyValgrindInvalidSupFile


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5a768f7f169e49b76c33fa5210297ce5f79aed70
commit 5a768f7f169e49b76c33fa5210297ce5f79aed70
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 15:06:20 2013 +0200
Commit: Rolf Eike Beer e...@sf-mail.de
CommitDate: Wed May 8 15:06:20 2013 +0200

tests: try to fix test failures due to stale files

These tests have the same binary directory as always. But until yesterday 
they
had a source directory in the source tree, now their source and binary
directory are the same and the CMakeLists.txt is written into them using
configure_file(). Wipe these directories before writing the configuration to
avoid errors because of stale files.

diff --git a/Tests/CTestTestMemcheck/CMakeLists.txt 
b/Tests/CTestTestMemcheck/CMakeLists.txt
index 3e5a405..a6813ee 100644
--- a/Tests/CTestTestMemcheck/CMakeLists.txt
+++ b/Tests/CTestTestMemcheck/CMakeLists.txt
@@ -37,6 +37,10 @@ set(NORMAL_CTEST_OUTPUT \n1/1 MemCheck #1: RunCMake \\.+   
Passed +[0-0]+.[0-9]
 set(BULLSEYE_MSG (BullseyeCoverage[^\n]*\n)?)
 
 function(gen_mc_test_internal NAME CHECKER)
+# just to clean old directories from the time these had real source dirs
+file(REMOVE_RECURSE ${CMAKE_CURRENT_BINARY_DIR}/${NAME})
+# end
+
 set(SUBTEST_NAME ${NAME})
 set(CHECKER_COMMAND ${CHECKER})
 foreach(_file IN ITEMS CMakeLists.txt CTestConfig.cmake test.cmake)

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=00a30386cfe2e1a9cb842db17505b3baf07e119c
commit 00a30386cfe2e1a9cb842db17505b3baf07e119c
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 15:04:19 2013 +0200
Commit: Rolf Eike Beer e...@sf-mail.de
CommitDate: Wed May 8 15:04:19 2013 +0200

tests: remove useless 2nd subtest from DummyValgrindInvalidSupFile

diff --git a/Tests/CTestTestMemcheck/CMakeLists.txt 
b/Tests/CTestTestMemcheck/CMakeLists.txt
index 374b25f..3e5a405 100644
--- a/Tests/CTestTestMemcheck/CMakeLists.txt
+++ b/Tests/CTestTestMemcheck/CMakeLists.txt
@@ -98,10 +98,10 @@ set(CMAKELISTS_EXTRA_CODE add_test(NAME RunCMakeAgain 
COMMAND \\${CMAKE_COMMAN
 gen_mc_test(DummyValgrindIgnoreMemcheck \${PSEUDO_VALGRIND})
 
 set(CTEST_EXTRA_CONFIG set(CTEST_MEMORYCHECK_SUPPRESSIONS_FILE 
\\${CMAKE_CURRENT_BINARY_DIR}/does-not-exist\))
+unset(CMAKELISTS_EXTRA_CODE)
 gen_mc_test(DummyValgrindInvalidSupFile \${PSEUDO_VALGRIND})
 
 unset(CTEST_EXTRA_CONFIG)
-unset(CMAKELISTS_EXTRA_CODE)
 gen_mc_test(NotExist \${CTEST_BINARY_DIRECTORY}/no-memcheck-exe)
 
 gen_mc_test(Unknown ${CMAKE_COMMAND})

---

Summary of changes:
 Tests/CTestTestMemcheck/CMakeLists.txt |6 +-
 1 files changed, 5 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-2908-g2604899

2013-05-08 Thread Brad King
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  2604899aacd0bc9255d8cedf1f2a20b66574217f (commit)
   via  e4c046521f1da9cee44833d88320d7551719059b (commit)
   via  619fa2cce851728790986108e6519e7f440387ee (commit)
  from  894e00bded28af3e7ca3eb14c283d4e77253a9bd (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=2604899aacd0bc9255d8cedf1f2a20b66574217f
commit 2604899aacd0bc9255d8cedf1f2a20b66574217f
Merge: 894e00b e4c0465
Author: Brad King brad.k...@kitware.com
AuthorDate: Wed May 8 09:17:41 2013 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed May 8 09:17:41 2013 -0400

Merge topic 'vs-compiler-id-arm' into next

e4c0465 VS: Detect MSVC compiler id on ARM toolchain
619fa2c CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e4c046521f1da9cee44833d88320d7551719059b
commit e4c046521f1da9cee44833d88320d7551719059b
Author: Alexander Mohr thehes...@hotmail.com
AuthorDate: Wed May 8 09:10:52 2013 -0400
Commit: Brad King brad.k...@kitware.com
CommitDate: Wed May 8 09:10:52 2013 -0400

VS: Detect MSVC compiler id on ARM toolchain

This enables detection with the VS2012 CTP for windows Blue (8.1).
To build native ARM you need to have the WOA SDK (Windows on ARM).

diff --git a/Modules/CMakeDetermineCompilerId.cmake 
b/Modules/CMakeDetermineCompilerId.cmake
index b918092..ae91a29 100644
--- a/Modules/CMakeDetermineCompilerId.cmake
+++ b/Modules/CMakeDetermineCompilerId.cmake
@@ -131,6 +131,8 @@ Id flags: ${testflags}
 elseif(${id_arch} STREQUAL Itanium)
   set(id_machine_10 MachineIA64)
   set(id_arch ia64)
+elseif(${id_arch} STREQUAL ARM)
+  set(id_machine_10 MachineARM)
 else()
   set(id_machine_6 x86)
   set(id_machine_10 MachineX86)

---

Summary of changes:
 Modules/CMakeDetermineCompilerId.cmake |2 ++
 Source/CMakeVersion.cmake  |2 +-
 2 files changed, 3 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-2910-gc1589de

2013-05-08 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  c1589de3069d1a6dfb053f6270fdd0db90069cef (commit)
   via  8d51f33410534d607eb4fbb2cdd5612f3b34eddb (commit)
  from  2604899aacd0bc9255d8cedf1f2a20b66574217f (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=c1589de3069d1a6dfb053f6270fdd0db90069cef
commit c1589de3069d1a6dfb053f6270fdd0db90069cef
Merge: 2604899 8d51f33
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 11:21:42 2013 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed May 8 11:21:42 2013 -0400

Merge topic 'MemChecker-improvements' into next

8d51f33 fix build of pseudo-memtest on Windows


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8d51f33410534d607eb4fbb2cdd5612f3b34eddb
commit 8d51f33410534d607eb4fbb2cdd5612f3b34eddb
Author: Rolf Eike Beer e...@sf-mail.de
AuthorDate: Wed May 8 17:21:18 2013 +0200
Commit: Rolf Eike Beer e...@sf-mail.de
CommitDate: Wed May 8 17:21:18 2013 +0200

fix build of pseudo-memtest on Windows

diff --git a/Tests/CTestTestMemcheck/memtester.cxx.in 
b/Tests/CTestTestMemcheck/memtester.cxx.in
index 092eeb5..64b72d3 100644
--- a/Tests/CTestTestMemcheck/memtester.cxx.in
+++ b/Tests/CTestTestMemcheck/memtester.cxx.in
@@ -14,7 +14,7 @@ main(int argc, char **argv)
 logarg = --log-file=;
   else if (exename.find(purify) != exename.npos)
 #ifdef _WIN32
-logarg = /SAVETEXTDATA=
+logarg = /SAVETEXTDATA=;
 #else
 logarg = -log-file=;
 #endif

---

Summary of changes:
 Tests/CTestTestMemcheck/memtester.cxx.in |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, master, updated. v2.8.10.2-1025-gcf4869b

2013-05-08 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  cf4869ba080ead1077bf5f3aa67c5c67a19e1a0d (commit)
  from  619fa2cce851728790986108e6519e7f440387ee (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=cf4869ba080ead1077bf5f3aa67c5c67a19e1a0d
commit cf4869ba080ead1077bf5f3aa67c5c67a19e1a0d
Author: Kitware Robot kwro...@kitware.com
AuthorDate: Thu May 9 00:01:03 2013 -0400
Commit: Kitware Robot kwro...@kitware.com
CommitDate: Thu May 9 00:01:03 2013 -0400

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index ac680d4..bb47580 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 20130508)
+set(CMake_VERSION_TWEAK 20130509)
 #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