Re: [CMake] Contributing to CMake

2012-03-30 Thread Jean-Christophe Fillion-Robin
Hi David, This is great :) If you created some patch that are fixing bugs, the best is to create an entry on the tracker, attach the patch to it. More details here [1]. Depending on what you want to contribute (some feature for example - see [3]), you may also want to discuss it first on the li

[CMake] Contributing to CMake

2012-03-30 Thread David Golub
I'm interested in contributing some patches to CMake. Could you let me know how one goes about beginning to contribute to the project? Thank you very much. David Golub -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.ht

[CMake] include_external_msproject for MS Visual Studio *.csproj

2012-03-30 Thread Valentine S.
I have several C++ projects (library, tests, examples) for Linux and Windows. This projects are generated by CMake (Makefile for Linux, *.vcproj for Windows MS Visual Studio). And I have C++/CLI (C++ library wrapper) and C# projects (tests, examples). This projects are written in MS Visual Studio a

Re: [CMake] Fwd: Fwd: Help with CMAKE

2012-03-30 Thread Bill Hoffman
On 3/29/2012 6:19 PM, Sweety Pie wrote: Well after installing the Windows platform SDK am getting these msgs in the CMake screen: 1- "The C compiler "cl" is not able to compile a simple test program." Although the VS can perfectly run all the codes I have previously. The other error is this:

Re: [CMake] Can't link Qt libraries CMake 2.8.7 + OSX 10.5 + Qt 4.8.1

2012-03-30 Thread Michael Jackson
Please reply to the list also so others may help. Can you use either ccmake or CMake-GUI to set the necessary flag? -- Mike Jackson On Mar 30, 2012, at 10:51 AM, Carlo Nicolini wrote: > As you said the architecture of QtGui library is: > > /Library/Frameworks/QtGui.framework/QtGui: Mach-O 64

Re: [CMake] Can't link Qt libraries CMake 2.8.7 + OSX 10.5 + Qt 4.8.1

2012-03-30 Thread Michael Jackson
The error is this: > ld warning: in /Library/Frameworks//QtGui.framework/QtGui, file is not of > required architecture Your program is compiling for one architecture but the Qt libs are compiled for another. My guess is that you are default compiling for 32 bit (since that is the default under

Re: [CMake] Problem of CPack install folder

2012-03-30 Thread Huang, Deqing
Thanks for the reply. With set(CPACK_NSIS_INSTALL_ROOT "D:\\") the PACKAGE failed to build: 5>-- Build started: Project: PACKAGE, Configuration: Debug Win32 -- 5>Build started 3/30/2012 21:51:15. 5>InitializeBuildStatus: 5> Creating "Win32\Debug\PACKAGE\PACKAGE.unsuccessfulbuild" b

Re: [CMake] Problem of CPack install folder

2012-03-30 Thread David Cole
Does: set(CPACK_NSIS_INSTALL_ROOT "D:\\") work? On Fri, Mar 30, 2012 at 8:14 AM, Huang, Deqing wrote: > Hi, > > I am trying to set up a customized installation directory via CPack on > Windows. > > It should be pretty straightforward by setting something like: >     set(CPACK_NSIS_INSTALL_RO

[CMake] Can't link Qt libraries CMake 2.8.7 + OSX 10.5 + Qt 4.8.1

2012-03-30 Thread Carlo Nicolini
I've a very strange problem while trying to compile a the example provided at http://www.cmake.org/Wiki/images/2/25/QtTest-Package-Example.zip System Informations: Mac OSX 10.5.8 cmake version 2.8.7 installed from latest dmg package available Qt 4.8.1 Installed from latest repositories I issue

[CMake] Problem of CPack install folder

2012-03-30 Thread Huang, Deqing
Hi, I am trying to set up a customized installation directory via CPack on Windows. It should be pretty straightforward by setting something like: set(CPACK_NSIS_INSTALL_ROOT "D:") set(CPACK_PACKAGE_INSTALL_DIRECTORY "mylib") should get a path of "D:\mylib" , but surprisingly it doesn't w