[Cmake-commits] CMake branch, master, updated. v3.13.2-884-g310054a

2019-01-12 Thread Kitware Robot via Cmake-commits
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  310054ac230d2c7ad2a88052502cbd8939cf2529 (commit)
  from  c459beaf60b21ac906b70d4ccd6ba16d2cae5be6 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=310054ac230d2c7ad2a88052502cbd8939cf2529
commit 310054ac230d2c7ad2a88052502cbd8939cf2529
Author: Kitware Robot 
AuthorDate: Sun Jan 13 00:01:04 2019 -0500
Commit: Kitware Robot 
CommitDate: Sun Jan 13 00:01:04 2019 -0500

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index 3910c3b..65c2c94 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -1,5 +1,5 @@
 # CMake version number components.
 set(CMake_VERSION_MAJOR 3)
 set(CMake_VERSION_MINOR 13)
-set(CMake_VERSION_PATCH 20190112)
+set(CMake_VERSION_PATCH 20190113)
 #set(CMake_VERSION_RC 1)

---

Summary of changes:
 Source/CMakeVersion.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[CMake] Removing builds from CDash

2019-01-12 Thread Donald MacQueen [|] via CMake
This page 
(https://vtk.org/Wiki/CDash:Administration#Delete_builds_with_wrong_dates) 
has a section titled Automatic removal of builds which describes two 
ways of removing builds.


The first is to set $CDASH_AUTOREMOVE_BUILDS='1';

The second is to run a cron job:  0 6 * * 0 php5 
/var/www/CDash/autoRemoveBuilds.php all


But my CDash 2.6.0 does not have an autoRemoveBuilds.php file. It does 
have autoRemove.php, but running it does nothing,


What am I missing here?

Thanks


--
Donald [|]
A bad day in [] is better than a good day in {}.


---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

--

Powered by www.kitware.com

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

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

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

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


Re: [CMake] Setting MSVC runtime type on CMake command line?

2019-01-12 Thread Mateusz Loskot
On Sat, 12 Jan 2019 at 14:20, Osman Zakir  wrote:
>
> I tried to set the runtime to static by passing the "-DMSVC_RUNTIME_TYPE=/MT"
> argument when running CMake, but it generated a warning

Could you paste link to the CMake docs page where this variable is described?

> So what's the correct way to do this?

Modify C/C++ flags. For example, something along these lines

string(REGEX REPLACE "/MD" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
string(REGEX REPLACE "-MT" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
target_compile_options(myexe PRIVATE $<$:-MT>)

Best regards,
-- 
Mateusz Loskot, http://mateusz.loskot.net
-- 

Powered by www.kitware.com

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

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

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

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


[CMake] Setting MSVC runtime type on CMake command line?

2019-01-12 Thread Osman Zakir
I tried to set the runtime to static by passing the "-DMSVC_RUNTIME_TYPE=/MT" 
argument when running CMake, but it generated a warning saying that that option 
was ignored by the project (Zlib in this case).  So what's the correct way to 
do this?
-- 

Powered by www.kitware.com

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

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

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

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