Re: [CMake] cmake tutorial in pdf

2012-11-16 Thread Pau Garcia i Quiles
On Fri, Nov 16, 2012 at 7:33 PM, Érico 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 answer) -- Power

Re: [CMake] Actual name of a library

2012-11-16 Thread Leif Walsh
Possibly $ Sent from my iPhone On Nov 16, 2012, at 17:20, Thomas Nilsson 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 platform? > > I need this as an argument

[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 fro

[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 op

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 wrote: > ** > > On Friday 16 November 2012 16:33:00 Érico wrote: > > is there a cmake tutorial in pdf so we can print ? > > > > Go to http:/

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 > 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

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 http://www.kitware.com/openso

[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 subs

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 wrote: > > [root@ericomtx mysql-5.5.4-m3]# make uninstall > make: *** No rule to make target `u

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 > 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,

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 wrote: > 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 mysq

[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 i