Re: [CMake] Native build system invocation

2007-01-03 Thread Bill Hoffman
Alexander Neundorf wrote: Von: Bill Hoffman <[EMAIL PROTECTED]> An: Roman Yakovenko <[EMAIL PROTECTED]> Roman Yakovenko wrote: Thanks for help. I think I have enough information to deal with the problem. You should make a feature request in the bug tracker. The code for bui

Re: [CMake] Native build system invocation

2007-01-03 Thread Alexander Neundorf
Von: Bill Hoffman <[EMAIL PROTECTED]> An: Roman Yakovenko <[EMAIL PROTECTED]> > Roman Yakovenko wrote: > > Thanks for help. I think I have enough information to deal with the > > problem. > > > You should make a feature request in the bug tracker. The code for > building is already in ctest a

Re: [CMake] Native build system invocation

2006-12-26 Thread Roman Yakovenko
On 12/26/06, Bill Hoffman <[EMAIL PROTECTED]> wrote: You should make a feature request in the bug tracker. The code for building is already in ctest and cmake. Basically, it sounds like you want a cmake -E build ProjectName ProjectDirectory. This is exactly what I want. I opened feature req

Re: [CMake] Native build system invocation

2006-12-26 Thread Bill Hoffman
Roman Yakovenko wrote: Thanks for help. I think I have enough information to deal with the problem. You should make a feature request in the bug tracker. The code for building is already in ctest and cmake. Basically, it sounds like you want a cmake -E build ProjectName ProjectDirectory.

Re: [CMake] Native build system invocation

2006-12-25 Thread Roman Yakovenko
Thanks for help. I think I have enough information to deal with the problem. -- Roman Yakovenko C++ Python language binding http://www.language-binding.net/ ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

RE: [CMake] Native build system invocation

2006-12-25 Thread Thompson, David C
>> ... you might be interested in using >> the value of CMAKE_GENERATOR. There's a list of the values >> it takes on, as well as some information about scripts that >> Kitware uses to automate builds on the CMake Wiki: >> http://www.cmake.org/Wiki/CMake_Scripting_Of_CTest >> You could have

Re: [CMake] Native build system invocation

2006-12-25 Thread gga
Roman Yakovenko wrote: > On 12/26/06, gga <[EMAIL PROTECTED]> wrote: > > Thanks for help. I know how to invoke native build system. What I > don't know how to make > it in "portable" way - I don't what to know what is the native build > system. CMake > already knows it, so I would like to reuse tha

Re: [CMake] Native build system invocation

2006-12-25 Thread Roman Yakovenko
On 12/26/06, Thompson, David C <[EMAIL PROTECTED]> wrote: I don't know that I would advise what you're trying to do, but if you insist :-) I will be glad to know other possible solutions :-) you might be interested in using the value of CMAKE_GENERATOR. There's a list of the values it take

RE: [CMake] Native build system invocation

2006-12-25 Thread Thompson, David C
venko Sent: Mon 12/25/2006 9:06 PM To: gga Cc: CMake ML Subject: Re: [CMake] Native build system invocation On 12/26/06, gga <[EMAIL PROTECTED]> wrote: > Roman Yakovenko wrote: > > Hi. It seems that I cannot to find answer for pretty simple question: > > how I can invoke

Re: [CMake] Native build system invocation

2006-12-25 Thread Roman Yakovenko
On 12/26/06, gga <[EMAIL PROTECTED]> wrote: Roman Yakovenko wrote: > Hi. It seems that I cannot to find answer for pretty simple question: > how I can invoke native build system from\using CMake? Short answer is that you invoke the native build system as usual (make, nmake, etc). Thanks for hel

Re: [CMake] Native build system invocation

2006-12-25 Thread Roman Yakovenko
On 12/25/06, Alan W. Irwin <[EMAIL PROTECTED]> wrote: On 2006-12-25 16:44+0200 Roman Yakovenko wrote: > My goal is to create fully automated setup. How about creating a three-line script that invokes the following commands: cmake path make make install It will not work on Windows. MS Visual

Re: [CMake] Native build system invocation

2006-12-25 Thread gga
Roman Yakovenko wrote: > Hi. It seems that I cannot to find answer for pretty simple question: > how I can invoke native build system from\using CMake? Short answer is that you invoke the native build system as usual (make, nmake, etc). Find attached a wrapper bash script I am using for cmake and

Re: [CMake] Native build system invocation

2006-12-25 Thread Alan W. Irwin
On 2006-12-25 16:44+0200 Roman Yakovenko wrote: My goal is to create fully automated setup. How about creating a three-line script that invokes the following commands: cmake path make make install ? Merry Christmas, by the way. Alan __ Alan W. Irwin Astronomical re

Re: [CMake] Native build system invocation

2006-12-25 Thread Roman Yakovenko
On 12/25/06, Ilya Shvetsov <[EMAIL PROTECTED]> wrote: On Mon, 25 Dec 2006 16:24:52 +0200, Roman Yakovenko <[EMAIL PROTECTED]> wrote: > Hi. It seems that I cannot to find answer for pretty simple question: > how I can invoke native build system from\using CMake? If I understand problem correctly

Re: [CMake] Native build system invocation

2006-12-25 Thread Ilya Shvetsov
On Mon, 25 Dec 2006 16:24:52 +0200, Roman Yakovenko <[EMAIL PROTECTED]> wrote: Hi. It seems that I cannot to find answer for pretty simple question: how I can invoke native build system from\using CMake? If I understand problem correctly, you cant. you must call native build tools manually a

[CMake] Native build system invocation

2006-12-25 Thread Roman Yakovenko
Hi. It seems that I cannot to find answer for pretty simple question: how I can invoke native build system from\using CMake? Problem description: I'd like to create a setup, which will install few libraries from sources. For this purpose I wrote small script in Python, which calls CMake. CMake ge