[CMake] (no subject)

2016-04-14 Thread Abhijeet Mhatre via CMake
http://bit.ly/1TOTr0m?675=bebenuci&991&lenuk==33306881 -- 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 visi

Re: [CMake] good open source IDE

2007-07-02 Thread abhijeet mhatre
I have used kdevelop a lot for C/C++ and I found that it still not mature enough. Lots of bugs and features that do not work very well. Then I switched to netbeans (for C/C++). I found it very good. I use it only as a text editor and source browser for jumping to function and variable definitio

[CMake] integrating cmake project with third party project

2007-06-25 Thread abhijeet mhatre
Hi I am using cmake for my project. My project has a dependency which is a 3rd party makefile based project. I want cmake to just go to the other project directory and execute make over there and come back. I want this to be done when I type make. Is there any way to do it? I tried using E

Re: Re: [CMake] moving project folder

2007-06-08 Thread abhijeet mhatre
n each target build machine... On 6/8/07, abhijeet mhatre <[EMAIL PROTECTED]> wrote: > Hi > I configure cmake by writing a CMakeLists.txt file in a source folder. > It runs fine. > > Now if I move the folder to some other location, cmake complains that the > fil

Re: Re: [CMake] moving project folder

2007-06-07 Thread abhijeet mhatre
> Hi > I configure cmake by writing a CMakeLists.txt file in a source folder. > It runs fine. > > Now if I move the folder to some other location, cmake complains that the > files still refer to the previous location. Then I have to edit > CMakeCache.txt and replace the project path at 3-4 the

[CMake] moving project folder

2007-06-07 Thread abhijeet mhatre
Hi I configure cmake by writing a CMakeLists.txt file in a source folder. It runs fine. Now if I move the folder to some other location, cmake complains that the files still refer to the previous location. Then I have to edit CMakeCache.txt and replace the project path at 3-4 there. Then it w

[CMake] how to use a cross linker

2007-06-05 Thread abhijeet mhatre
. regards Abhijeet abhijeet mhatre <[EMAIL PROTECTED]> wrote: Hi list I am using cmake as a tool for generating Linux makefiles. I read the documentation and made a CmakeLists.txt file. but when I do a cmake . , I get errors here is the CmakeLists.txt file -- P

Re: [CMake] LINK_DIRECTORIES gives errors

2007-05-30 Thread abhijeet mhatre
>Actually, it is trying to say that target "HelloWorld" is not built by >the project. The TARGET_LINK_LIBRARIES command must come AFTER the >ADD_EXECUTABLE command so that cmake will know what the target is. Hey Thanks Bill and Vitor. It works perfectly now.

[CMake] LINK_DIRECTORIES gives errors

2007-05-29 Thread abhijeet mhatre
Hi list I am using cmake as a tool for generating Linux makefiles. I read the documentation and made a CmakeLists.txt file. but when I do a cmake . , I get errors here is the CmakeLists.txt file -- PROJECT(myproject) SET_TARGET_PROPERTIES(HelloWorld PROPERTIES LINKER_LANG