[cmake-developers] [CMake 0013687]: Failure to find VS11 toolchain on Windows 8

2012-11-16 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=13687 == Reported By:Michael Spencer Assigned To:

[cmake-developers] [CMake 0013688]: No way to specify target properties for AUTOMOC-generated targets

2012-11-16 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13688 == Reported By:Mike Gelfand Assigned To:

[cmake-developers] INTERFACE targets (Was: Generator expressisons in target properties)

2012-11-16 Thread Stephen Kelly
Stephen Kelly wrote: Yes, interfaces should be flattened and replaced with their content. So the INTERFACE_LINK_LIBRARIES property would be handled differently for an INTERFACE_LIBRARY than a SHARED_LIBRARY. I think that's a bit confusing. An interface wrapping around a single other

Re: [cmake-developers] [PATCH] Don't use /ZmXXXX for MSVC11+

2012-11-16 Thread Brad King
On 11/15/2012 08:31 AM, Adam Moss wrote: /Zm1000 considered harmful in VS2012 (this is probably true of =VS2005 Only use /Zm on MSVC versions older than 11. I'm willing to be more aggressive and drop it for all VS = 7.1: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=cd739794

[cmake-developers] [CMake 0013689]: Some targets cannot be built with Eclipse CDT

2012-11-16 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13689 == Reported By:Michael Broutin Assigned To:

Re: [cmake-developers] INTERFACE targets (Was: Generator expressisons in target properties)

2012-11-16 Thread Brad King
On 11/06/2012 01:32 PM, Brad King wrote: On 11/06/2012 12:00 PM, Stephen Kelly wrote: add_library(iface INTERFACE) set_property(TARGET iface PROPERTY INTERFACE_LINK_LIBRARIES foo bar) target_link_libraries(test_exe directdep1 iface directdep2) It is not really equivalent to this:

[cmake-developers] [CMake 0013691]: FindGettext.cmake does not set GETTEXT_FOUND in PARENT_SCOPE

2012-11-16 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13691 == Reported By:Herbert Thielen Assigned To:

[cmake-developers] [CMake 0013694]: CMAKE_OSX_SYSROOT isn't quoted, breaking builds when the SDK path contains a space

2012-11-16 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=13694 == Reported By:Jevin Sweval Assigned To:

[CMake] unistall a mysql src with CMake

2012-11-16 Thread Érico
I have followed the steps from bellow to install mysql from src on my linux ( red hat 6 ) : shell groupadd mysql shell useradd -r -g mysql mysql # Beginning of source-build specific instructions shell tar zxvf mysql-VERSION.tar.gz shell cd mysql-VERSION shell cmake . shell make shell make install

Re: [CMake] unistall a mysql src with CMake

2012-11-16 Thread Leif Walsh
Try make uninstall. It should use install_manifest.txt to find what's installed. Sent from my iPhone On Nov 16, 2012, at 11:58, Érico erico...@gmail.com wrote: I have followed the steps from bellow to install mysql from src on my linux ( red hat 6 ) : shell groupadd mysql shell

Re: [CMake] unistall a mysql src with CMake

2012-11-16 Thread Érico
[root@ericomtx mysql-5.5.4-m3]# make uninstall make: *** No rule to make target `uninstall'. Stop. [root@ericomtx mysql-5.5.4-m3]# 2012/11/16 Leif Walsh leif.wa...@gmail.com Try make uninstall. It should use install_manifest.txt to find what's installed. Sent from my iPhone On Nov 16,

Re: [CMake] unistall a mysql src with CMake

2012-11-16 Thread Leif Walsh
Bah. Somewhere there's some cmake magic to parse that and give you an uninstall target. I guess just remove whatever's in the install manifest. Sent from my iPhone On Nov 16, 2012, at 13:16, Érico erico...@gmail.com wrote: [root@ericomtx mysql-5.5.4-m3]# make uninstall make: *** No rule

[CMake] cmake tutorial in pdf

2012-11-16 Thread Érico
is there a cmake tutorial in pdf so we can print ? -- 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

Re: [CMake] cmake tutorial in pdf

2012-11-16 Thread Bogdan Cristea
On Friday 16 November 2012 16:33:00 Érico wrote: is there a cmake tutorial in pdf so we can print ? Go to http://www.cmake.org/cmake/help/v2.8.10/cmake.html, then print it as pdf -- Bogdan-- Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [CMake] unistall a mysql src with CMake

2012-11-16 Thread Érico
I removed all files and dirs that were in the manifest by hand thks !! 2012/11/16 Leif Walsh leif.wa...@gmail.com Bah. Somewhere there's some cmake magic to parse that and give you an uninstall target. I guess just remove whatever's in the install manifest. Sent from my iPhone On

Re: [CMake] cmake tutorial in pdf

2012-11-16 Thread David Cole
One of the links on there is the online tutorial: http://www.cmake.org/cmake/help/cmake_tutorial.html On Fri, Nov 16, 2012 at 1:38 PM, Bogdan Cristea crist...@gmail.com wrote: ** On Friday 16 November 2012 16:33:00 Érico wrote: is there a cmake tutorial in pdf so we can print ? Go

[CMake] Actual name of a library

2012-11-16 Thread Thomas Nilsson
In Cmake scripts names of libraries are used without platform specific pre- and suffixes. Is there a way to convert such a name to the actual filename on the current platform? I need this as an argument to a command in my Ctests... /Thomas -- Powered by www.kitware.com Visit other Kitware

[CMake] Using cmake built dll:s in build tree

2012-11-16 Thread Thomas Nilsson
On DLL platforms (Windows and Cygwin) shared libraries are found through the PATH and not in some .../lib directory. (There the link stubs are kept.) If I build a shared library in one part of my build tree how can I make sure that this is the DLL that will be loaded when I run an executable

Re: [CMake] Actual name of a library

2012-11-16 Thread Leif Walsh
Possibly $TARGET_FILE:name Sent from my iPhone On Nov 16, 2012, at 17:20, Thomas Nilsson thomas.nils...@responsive.se wrote: In Cmake scripts names of libraries are used without platform specific pre- and suffixes. Is there a way to convert such a name to the actual filename on the current

Re: [CMake] cmake tutorial in pdf

2012-11-16 Thread Pau Garcia i Quiles
On Fri, Nov 16, 2012 at 7:33 PM, Érico erico...@gmail.com wrote: is there a cmake tutorial in pdf so we can print ? Mine is a bit old, but still relevant: http://www.elpauer.org/stuff/learning_cmake.pdf -- Pau Garcia i Quiles http://www.elpauer.org (Due to my workload, I may need 10 days to

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-897-g40a4eaa

2012-11-16 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 40a4eaa404cd3ee956ee7f2949f720ea1f79568d (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.10.1-900-g220d5cc

2012-11-16 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 220d5ccbb9cf957fd6262981f4b1e03d889ed21f (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.10.1-162-g3359d95

2012-11-16 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 762cbfe..a59c501 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 20121116