Re: [CMake] Avoid losing changes in Xcode when changing CMakeLists.txt

2010-07-22 Thread David Ojeda
Thank you Michael, I was afraid about this but I had to ask to try anyways :s On Thu, Jul 22, 2010 at 4:09 PM, Michael Wild wrote: > > On 22. Jul, 2010, at 15:57 , David Ojeda wrote: > > > Hello CMakers! > > > > I am coding with some teammates that use Xcode as

[CMake] Avoid losing changes in Xcode when changing CMakeLists.txt

2010-07-22 Thread David Ojeda
Hello CMakers! I am coding with some teammates that use Xcode as their IDE. Everything is working fine thanks to CMake, except for the following situation: 1. Developer X checkouts a project from svn and uses CMake to generate their Xcode project 2. Developer X succesfully compiles their executab

Re: [CMake] install component shared library

2010-06-04 Thread David Ojeda
COMPONENT libraries ARCHIVE DESTINATION lib/static COMPONENT libraries) Ryan On 6/4/10 9:14 AM, David Ojeda wrote: Hello all, I have a problem using the COMPONENT property of the install command. My CMakeLists.txt has several install commands: # some files... install(FILES ${some_var

[CMake] install component shared library

2010-06-04 Thread David Ojeda
Hello all, I have a problem using the COMPONENT property of the install command. My CMakeLists.txt has several install commands: # some files... install(FILES ${some_var} DESTINATION include/xxx COMPONENT headers) install(FILES "${CMAKE_CURRENT_BINARY_DIR}/somefile.txt" DESTINATION share/txt

[CMake] CPack Mac OSX bundle uninstall

2010-05-05 Thread David Ojeda
Hello cmakers! I am developing a C++ library and I am testing CMake with Cpack with the bundle generator for mac osx (BTW, great work! Very easy to use!). I have successfully generated a .dmg that has a .pkg. I managed to install the libraries and headers that are included with my library. However

[CMake] Problem with cmake when make is in a path with spaces.

2010-03-17 Thread David Ojeda
Hello all, I have a problem on a mac os x server where I want to compile a simple code with cmake. The cmake process fails because it cannot compile a test file. The output file shows some bizarre error. Apparently it cannot find the make command. The problem lies, I think, in the fact that the ma

Re: [CMake] installing a module

2009-08-28 Thread David Ojeda
On Tue, Aug 25, 2009 at 3:35 PM, Michael Wild wrote: > > On 25. Aug, 2009, at 15:23, David Ojeda wrote: > > On Tue, Aug 25, 2009 at 12:47 PM, Andreas Pakulat wrote: >> >> On 25.08.09 12:37:46, David Ojeda wrote: >>> >>>> I have a shared librar

Re: [CMake] installing a module

2009-08-25 Thread David Ojeda
On Tue, Aug 25, 2009 at 12:47 PM, Andreas Pakulat wrote: > On 25.08.09 12:37:46, David Ojeda wrote: > > I have a shared library that I managed to compile and install using > cmake. > > This is working great but now I want to use this library in another > > cmake-based d

[CMake] installing a module

2009-08-25 Thread David Ojeda
Hello all, I have a quick question regarding cmake modules. I have a shared library that I managed to compile and install using cmake. This is working great but now I want to use this library in another cmake-based development. Normally, as with any other shared library, I use a FindPackage to ge