Re: [cmake-developers] FLAGS on Darwin and custom languages

2013-10-10 Thread Vittorio Giovara
On Thu, Oct 10, 2013 at 2:44 PM, Brad King brad.k...@kitware.com wrote: On 10/09/2013 05:56 PM, Vittorio Giovara wrote: I'm kinda puzzled though, by your explanation it appears that by design a flag has been hardcoded in the compiler flags with no option to disable it. Isn't the role

Re: [cmake-developers] FLAGS on Darwin and custom languages

2013-10-09 Thread Vittorio Giovara
On Wed, Oct 9, 2013 at 2:18 PM, Brad King brad.k...@kitware.com wrote: On 10/08/2013 07:12 PM, Vittorio Giovara wrote: I noticed that in 2.8.11 under OSX CMake adds -F/Library/Frameworks in every kind of FLAGS rule, for any language. The flag is hard-coded in the C++-implemented generator

[cmake-developers] FLAGS on Darwin and custom rules in 2.8.11

2013-10-08 Thread Vittorio Giovara
Hello, I noticed that in 2.8.11 under OSX CMake adds -F/Library/Frameworks in every kind of FLAGS rule, for any language. This of course conflicts with non C/C++ compilers (I don't know about fortran) and my Pascal based build system breaks because -F is not a freepascal flag. How can I prevent

[cmake-developers] review: pascal language supported

2013-03-25 Thread Vittorio Giovara
Hi all, some time ago I proposed adding Pascal support in cmake and since then I got a lot of progress. If you can see here I have a build system ready and working https://code.google.com/p/hedgewars/source/browse/cmake_modules/CMakeDeterminePascalCompiler.cmake?name=cmake_pascal

Re: [cmake-developers] TARGET availability

2013-03-22 Thread Vittorio Giovara
On Thu, Mar 21, 2013 at 7:46 PM, Brad King brad.k...@kitware.com wrote: On 03/21/2013 08:11 AM, Vittorio Giovara wrote: similar procedure as found in cmMakefileExectuableTargetGenerator. The logic to compute the actual target file location is more complicated in order to support OS X

Re: [cmake-developers] TARGET availability

2013-03-22 Thread Vittorio Giovara
On Fri, Mar 22, 2013 at 12:55 PM, Brad King brad.k...@kitware.com wrote: On 03/22/2013 04:38 AM, Vittorio Giovara wrote: difference I see is that TARGET in the _LINK_EXECUTABLE or _CREATE_SHARED_LIBRARY gets reported as a relative path, while in _COMPILE_OBJECT you get the full path

Re: [cmake-developers] TARGET availability

2013-03-21 Thread Vittorio Giovara
On Thu, Mar 21, 2013 at 11:06 AM, Vittorio Giovara vittorio.giov...@gmail.com wrote: On Wed, Mar 20, 2013 at 2:05 PM, Brad King brad.k...@kitware.com wrote: On 3/20/2013 4:52 AM, Vittorio Giovara wrote: is it possible to use the TARGET variable during the COMPILE_OBJECT phase? I see

Re: [cmake-developers] TARGET availability

2013-03-21 Thread Vittorio Giovara
On Thu, Mar 21, 2013 at 1:11 PM, Vittorio Giovara vittorio.giov...@gmail.com wrote: On Thu, Mar 21, 2013 at 11:06 AM, Vittorio Giovara vittorio.giov...@gmail.com wrote: On Wed, Mar 20, 2013 at 2:05 PM, Brad King brad.k...@kitware.com wrote: On 3/20/2013 4:52 AM, Vittorio Giovara wrote

[cmake-developers] TARGET availability

2013-03-20 Thread Vittorio Giovara
Hi, is it possible to use the TARGET variable during the COMPILE_OBJECT phase? I see it only working on EXECUTABLE and LIBRARY steps but a few languages would benefit from having TARGET available during COMPILE_OBJECT as well. Is there any way to make it work with the current cmake version?

Re: [cmake-developers] Summer of code and Pascal

2013-03-05 Thread Vittorio Giovara
Umh, ping on this one. Submission period for mentoring orgs start on the 18th and I would like to know a little earlier if/how/when cmake support is going be announced (or announce-able). Thanks, Vittorio Sent from my iPad Mini On 21/feb/2013, at 09:56, Vittorio Giovara vittorio.giov

Re: [cmake-developers] Summer of code and Pascal

2013-02-21 Thread Vittorio Giovara
So how do you think we could move on from this? Should we start wording an idea proposal? Should there be news posting on each website advertising this collaboration? Vittorio On Mon, Feb 11, 2013 at 4:03 PM, Bill Hoffman bill.hoff...@kitware.comwrote: On 2/8/2013 8:55 PM, Vittorio Giovara

[cmake-developers] Summer of code and Pascal

2013-02-08 Thread Vittorio Giovara
Hi all, I'm one of the developer of Hedgewars, an open source video game written in c++ and Pascal, using CMake as build system. Please see the full site at http://www.hedgewars.org/ Right now our pascal integration is a little hack-y,