Re: [CMake] Visual Studio Cross Compile

2015-11-02 Thread J Decker
for windows platform using cmake, you just need mingw (mingw64 is probably better) On Mon, Nov 2, 2015 at 9:36 AM, Michael Jäntsch wrote: > Hi, > > thanks for your replies. So it seems that Visual Studio is generally not > a great idea for cross-compiling... > So eclipse and some make system it's

[CMake] FOSDEM Desktops DevRoom 2016: Call for Participation

2015-11-02 Thread Pau Garcia i Quiles
FOSDEM Desktops DevRoom 2016 Call for Participation FOSDEM is one of the largest gatherings of Free Software contributors in the world and happens each February in Brussels (Belgium, Europe). One of the tracks will be the Desktops DevRoom (formerly known as “CrossDesktop DevRoom”), which will host

[CMake] CMake on OpenVMS - Bootstrap CMake complaining that “pid_t doesn’t exist on this platform?”

2015-11-02 Thread Custin, Jay (CSC Sw Middleware)
Please disregard my query regarding pid_t. Apparently something “lingered” around in my code environment. When I wiped out the code tree leaving nothing except my VMS-related modifications and rebuilt CMake it built without the pid_t error. Go figure. Back to trying to determine where the bo

Re: [CMake] Visual Studio Cross Compile

2015-11-02 Thread Michael Jäntsch
Hi, thanks for your replies. So it seems that Visual Studio is generally not a great idea for cross-compiling... So eclipse and some make system it's gonna be then. Any suggestions what works best? Coming from the Linux world, I obviously use Unix make, but there is also Ninja, nmake, ...? Michae

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread Andreas Pakulat
Hi, On Mon, Nov 2, 2015 at 4:26 PM, Clinton Stimpson wrote: > On Monday, November 02, 2015 04:08:55 PM Andreas Pakulat wrote: > > Hi, > > > > On Mon, Nov 2, 2015 at 2:49 PM, Boudewijn Rempt > wrote: > > > On Mon, 2 Nov 2015, Andreas Pakulat wrote: > > > > > > I think the idea of using @rpath as

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread clinton
- On Nov 2, 2015, at 2:26 AM, Boudewijn Rempt b...@valdyas.org wrote: > I checked the manual and the blog post about rpath on osx, but I'm still > confused, and still not getting it right... > > I build and installed Qt 5.6 alpha like this: > > ./configure -prefix /Users/boudewijnrempt/kf5

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread Andreas Pakulat
Hi, On Mon, Nov 2, 2015 at 2:49 PM, Boudewijn Rempt wrote: > On Mon, 2 Nov 2015, Andreas Pakulat wrote: > > I think the idea of using @rpath as install name of the Qt libraries is >> geared towards the usecase >> of shipping Qt within the application bundle of the application. In that >> case al

Re: [CMake] CMake on OpenVMS - Bootstrap CMake complaining that “pid_t doesn’t exist on this platform?”

2015-11-02 Thread Bill Hoffman
On 11/1/2015 4:19 PM, Custin, Jay (CSC Sw Middleware) wrote: Anyone have any ideas? Look in the CMakeError.log file and find out why it is not finding pid_t. -Bill -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread Clinton Stimpson
On Monday, November 02, 2015 04:08:55 PM Andreas Pakulat wrote: > Hi, > > On Mon, Nov 2, 2015 at 2:49 PM, Boudewijn Rempt wrote: > > On Mon, 2 Nov 2015, Andreas Pakulat wrote: > > > > I think the idea of using @rpath as install name of the Qt libraries is > > > >> geared towards the usecase > >

Re: [CMake] Visual Studio Cross Compile

2015-11-02 Thread Parag Chandra
Hi Michael, Meant to reply sooner. As Nils pointed out, Visual Studio isn’t quite as flexible with cross-compilation as some other build systems. Having said that, it is indeed possible to cross-compile with Visual Studio, but there has to be a cross toolchain compatible with the IDE. Some exam

[CMake] FIND_LIBRARY & TARGET_LINK_LIBRARIES

2015-11-02 Thread Ette, Anthony (CDS)
Background info: On version 3.3.20150618. RedHawk Linux 5.1.1 (real-time variant of RHEL5). Description: I am not understanding the behavior of these two commands or am getting inconsistent results. Sometimes when the results of a found static library from FIND_LIBRARY are passed to TARGET_LINK_

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread Boudewijn Rempt
On Mon, 2 Nov 2015, Andreas Pakulat wrote: I think the idea of using @rpath as install name of the Qt libraries is geared towards the usecase of shipping Qt within the application bundle of the application. In that case all you need is set the rpath @executable_path/../Frameworks or so in the

Re: [CMake] getting the rpath right on osx

2015-11-02 Thread Andreas Pakulat
Hi, On Mon, Nov 2, 2015 at 10:26 AM, Boudewijn Rempt wrote: > I checked the manual and the blog post about rpath on osx, but I'm still > confused, and still not getting it right... > > I build and installed Qt 5.6 alpha like this: > > ./configure -prefix /Users/boudewijnrempt/kf5/i > > Then I ma

Re: [CMake] Visual Studio Cross Compile

2015-11-02 Thread Nils Gladitz
On 11/02/2015 12:41 PM, Michael Jäntsch wrote: Hi again, Is there nobody who can help me? I thought it would be a common thing to use cmake to cross compile!? Has nobody ever used visual studio to do so? Visual Studio itself does not have compiler selection in the same sense as is available

Re: [CMake] Visual Studio Cross Compile

2015-11-02 Thread Michael Jäntsch
Hi again, Is there nobody who can help me? I thought it would be a common thing to use cmake to cross compile!? Has nobody ever used visual studio to do so? Cheers Michael Am 29. Oktober 2015 15:21:41 MEZ, schrieb Michael Jaentsch : >Hi all, > >I have a question concerning Cross Compiling

[CMake] Greediness of kwsys regex

2015-11-02 Thread Gregor Jasny via CMake
Hello, Today I stumbled across funny behavior of string(REGEX REPLACE: This one would lead to an empty match: string(REGEX REPLACE "(.*)" "\\1Proxy.cpp" _out "IConnectionCallback") This one would match whole "IConnectionCallback" string(REGEX REPLACE "(.+)" "\\1Proxy.cpp" _out "IConnectionCa

[CMake] getting the rpath right on osx

2015-11-02 Thread Boudewijn Rempt
I checked the manual and the blog post about rpath on osx, but I'm still confused, and still not getting it right... I build and installed Qt 5.6 alpha like this: ./configure -prefix /Users/boudewijnrempt/kf5/i Then I made a small test project, consisting of nothing but a main that links to Qt