Re: [CMake] Supress generation of a Makefile

2015-03-18 Thread Hendrik Sattler
Am 18. März 2015 23:59:10 MEZ, schrieb aditya siram : >Hi all, >I have a cross platform project where Linux/Mac users will use the >standard >"autoheader;autoconf;./configure .." routine, but on Windows users will >do >"cmake .; make". that's the wrong command >I am using CMake solely to substi

Re: [CMake] Supress generation of a Makefile

2015-03-18 Thread Ryan Pavlik
If you can't/won't use CMake on all platforms (why? Seems like extra maintenance effort)... You should be OK if you do an out of source build as usually recommended for CMake; that is, generating the build files (by running cmake in) in a different directory than your source code. Ryan On Wed, Ma

[CMake] Supress generation of a Makefile

2015-03-18 Thread aditya siram
Hi all, I have a cross platform project where Linux/Mac users will use the standard "autoheader;autoconf;./configure .." routine, but on Windows users will do "cmake .; make". I am using CMake solely to substitute some variables in some subdirectory Makefile.in's. The problem is that there is an

Re: [CMake] Full paths for transitive dependencies

2015-03-18 Thread Stephen Kelly
Adam wrote: > I happened to stumble acrosss this today. I fixed it by adding another > find_package to the last project but this seems to defeat the purpose of > transitive dependencies. What am I doing wrong? The docs I linked to describe Config files which include() the result of install(EXP

Re: [CMake] Correct way to set machos-min-version in Cmake 3.2.1

2015-03-18 Thread Gregor Jasny
Hello, On 18/03/15 06:08, James Turner wrote: > I’d imagine this is a FAQ, but I’ve Googled without success. Apologies if the > answer is out there. > > With Cmake 3.2.1, some behaviour seems to have changed, in the handling of > CMAKE_OSX_DEPLOYMENT_TARGET. > > I am trying to build using the

Re: [CMake] Unreliable Find*.conf

2015-03-18 Thread Hendrik Sattler
Am 18. März 2015 07:23:12 MEZ, schrieb Damian Philipp : >Hello cmake-experts, > >I am working on a project that uses a third-party library delivered in >binary form (TeamSpeak 3 SDK). My project is supposed to build on Win, >Linux, and OSX, so I decided to use cmake as a build tool. I have >start

[CMake] how to create a custom dashboard?

2015-03-18 Thread Miklos Espak
... different then "Nightly", "Continuous" and "Experimental"? I would like to have a dashboard per branch for continuous testing, so that we can track the changes in the individual branches independently. The --track option should be for that, I think, but could not get it working. I tried this

Re: [CMake] Unreliable Find*.conf

2015-03-18 Thread Rolf Eike Beer
Am Mittwoch, 18. März 2015, 07:23:12 schrieb Damian Philipp: > Hello cmake-experts, > > I am working on a project that uses a third-party library delivered in > binary form (TeamSpeak 3 SDK). My project is supposed to build on Win, > Linux, and OSX, so I decided to use cmake as a build tool. I hav