[cmake-developers] [CMake 0013036]: Eclipse Generator can't determine the eclipse version correctly if eclipse is called via a symlink

2012-03-11 Thread Mantis Bug Tracker

The following issue has been SUBMITTED. 
== 
http://public.kitware.com/Bug/view.php?id=13036 
== 
Reported By:Felix Schwitzer
Assigned To:
== 
Project:CMake
Issue ID:   13036
Category:   Modules
Reproducibility:always
Severity:   minor
Priority:   normal
Status: new
== 
Date Submitted: 2012-03-11 12:53 EDT
Last Modified:  2012-03-11 12:53 EDT
== 
Summary:Eclipse Generator can't determine the eclipse
version correctly if eclipse is called via a symlink
Description: 
I call eclipse via a symlink $HOME/bin/eclipse to allow easily switching between
different eclipse versions.
In this case, the CMakeFindEclipseCDT4.cmake doesn't detect the version
correctly.
A fix would be easy if ones uses REALPATH instead of PATH in
CMakeFindEclipseCDT4.cmake at line 23.
The fix is so trivial that i didn't create a patch for this, sorry.
 
== 

Issue History 
Date ModifiedUsername   FieldChange   
== 
2012-03-11 12:53 Felix SchwitzerNew Issue
==

--

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 subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [cmake-developers] Ninja windows

2012-03-11 Thread Peter Kümmel

On 10.03.2012 21:10, David Cole wrote:

If somebody else has done work since the last time you pushed it to
'stage', then you should rebase any of your work on top of that to
keep a linear topic branch history.

   git checkout ninja-generator # (your local one...)
   git pull --rebase stage ninja-generator

should do what you're asking.

The other alternative is to always grab the latest from the stage
before you begin your work. (But you may still need to rebase if
somebody else is also working on it at the same time, and that
developer pushes first...)

Do you want me to clean up the commits you just pushed and make it
linear with no merges, or would you like to do it yourself?


Thanks (and hope this helps),
David


Thanks David, then I pull rebased in future.
And how could I rebase the already pushed branch?

Peter
--

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 subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [CMake] Triggers for isysroot

2012-03-11 Thread Michael Wild
On 03/11/2012 07:46 AM, P. Martin wrote:
 In CMake 2.8.7 on Lion, is there anything that would trigger -isysroot
 to appear in flags.make for a cxx program when there is no code by the
 devs to specifically add a -isysroot?  Thanks.


Yes, the CMAKE_OSX_SYSROOT in the cache does that.

Michael
--

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 subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Triggers for isysroot

2012-03-11 Thread P. Martin

On Mar 11, 2012, Michael Wild them...@gmail.com wrote: 
 On 03/11/2012 07:46 AM, P. Martin wrote:
  In CMake 2.8.7 on Lion, is there anything that would trigger -isysroot
  to appear in flags.make for a cxx program when there is no code by the
  devs to specifically add a -isysroot?  Thanks.
 
 
 Yes, the CMAKE_OSX_SYSROOT in the cache does that.
 
 Michael


I made a hello world program in c++, building in a CMake project.
That variable gets defined during cmake.  It does not trigger the
inclusion of -isysroot /some/path/to/an/sdk in flags.make.
Thank you for your reply.
--

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 subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[CMake] top level make

2012-03-11 Thread Totte Karlsson

Hi,
My project depends on several third party libraries, e.g. vtk. I wonder, if it 
is possible to setup using CMake so that when building my project, necessary 
third party libs are built as well.


Or is it advisable to keep it separate?

My src folder structure is
top\
-\mySource
-\ThirdParty\vtk
-\ThirdParty\SomeOther libs

Cheers,
Totte

--

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 subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] top level make

2012-03-11 Thread Michael Hertling
On 03/11/2012 10:27 PM, Totte Karlsson wrote:
 Hi,
 My project depends on several third party libraries, e.g. vtk. I wonder, if 
 it 
 is possible to setup using CMake so that when building my project, necessary 
 third party libs are built as well.
 
 Or is it advisable to keep it separate?
 
 My src folder structure is
 top\
 -\mySource
 -\ThirdParty\vtk
 -\ThirdParty\SomeOther libs
 
 Cheers,
 Totte

See the ExternalProject module [1].

Regards,

Michael

 [1] http://www.cmake.org/cmake/help/cmake-2-8-docs.html#module:ExternalProject
--

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 subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] top level make

2012-03-11 Thread Totte Karlsson

See the ExternalProject module [1].


[1] http://www.cmake.org/cmake/help/cmake-2-8-docs.html#module:ExternalProject

cool!

Thanks,
Totte
--

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 subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Triggers for isysroot

2012-03-11 Thread Michael Wild
On 03/11/2012 09:07 PM, P. Martin wrote:
 
 On Mar 11, 2012, Michael Wild them...@gmail.com wrote: 
 On 03/11/2012 07:46 AM, P. Martin wrote:
 In CMake 2.8.7 on Lion, is there anything that would trigger -isysroot
 to appear in flags.make for a cxx program when there is no code by the
 devs to specifically add a -isysroot?  Thanks.


 Yes, the CMAKE_OSX_SYSROOT in the cache does that.

 Michael
 
 
 I made a hello world program in c++, building in a CMake project.
 That variable gets defined during cmake.  It does not trigger the
 inclusion of -isysroot /some/path/to/an/sdk in flags.make.
 Thank you for your reply.

I think it depends on what you set it to. If it's the default SDK, it
doesn't get included. It could also be that the
CMAKE_OSX_DEPLOYMENT_TARGET variable plays into this.

Sadly, my Mac died quiet some time ago, so I can't check right now...

Michael

--

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 subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


[Cmake-commits] CMake branch, master, updated. v2.8.7-637-g3551844

2012-03-11 Thread KWSys Robot
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project CMake.

The branch, master has been updated
   via  3551844a81c362333f374723a046d6cbf110d2cc (commit)
  from  335b6592dd65b6d4679f3e657e059f009af2705d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3551844a81c362333f374723a046d6cbf110d2cc
commit 3551844a81c362333f374723a046d6cbf110d2cc
Author: KWSys Robot kwro...@kitware.com
AuthorDate: Mon Mar 12 00:01:02 2012 -0400
Commit: KWSys Robot kwro...@kitware.com
CommitDate: Mon Mar 12 00:05:05 2012 -0400

KWSys Nightly Date Stamp

diff --git a/Source/kwsys/kwsysDateStamp.cmake 
b/Source/kwsys/kwsysDateStamp.cmake
index 8ec9cf4..8ac9c83 100644
--- a/Source/kwsys/kwsysDateStamp.cmake
+++ b/Source/kwsys/kwsysDateStamp.cmake
@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR  2012)
 SET(KWSYS_DATE_STAMP_MONTH 03)
 
 # KWSys version date day component.  Format is DD.
-SET(KWSYS_DATE_STAMP_DAY   11)
+SET(KWSYS_DATE_STAMP_DAY   12)

---

Summary of changes:
 Source/kwsys/kwsysDateStamp.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits