Re: [CMake] How to build cmake to have http support?

2015-11-15 Thread Cedric Doucet
Thank you Gregor! As I feared, this solution does not work in my particular case. This is because something is missing in the system and I can't installed it since I'm not an administrator of the cluster: -- Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR) CMake Error at

Re: [CMake] How to build cmake to have http support?

2015-11-15 Thread Gregor Jasny
Hello, On 14/11/15 20:23, Cedric Doucet wrote: > I managed to compile cmake such that it support https by the past, but I > can't remember how I did it. > I remember I installed openssl and pass some flags to cmake. > > Could anyone remember me how to do it? HTTPS support worked for me

[CMake] Running a C source file through the pre-processor

2015-11-15 Thread Magnus Therning
I have a tool that, given a C source file, spits out some linker flags that's necessary to link the file into the final target. Now the C source file has grown rather large and I'd like to split some of it into a header file (those things are also useful in other files to reducing duplication of

[cmake-developers] [CPackRPM] Configure RPM package group and name per component

2015-11-15 Thread Markus Rickert
Hi, similar to the previous patch for CPackDeb, the attached patch adds component-specific settings for group and name of an RPM package. CPACK_RPM__PACKAGE_GROUP allows setting the group of the component with the main libraries to "Development/Libraries", while "Documentation" can be used

Re: [CMake] target_include_directories SYSTEM adds -isystem to Clang, but not GCC

2015-11-15 Thread digitalriptide
Did this fix make it into 3.4? After upgrading to 3.4, GCC still seems to lack -isystem flags on OS X. Is there anything extra I need to do? Thank you!! On Thu, Aug 20, 2015 at 8:12 AM, Gregor Jasny wrote: > Hello, > > On 17/08/15 01:01, digitalriptide wrote: > >> When I

Re: [CMake] How to build cmake to have http support?

2015-11-15 Thread Nicholas Braden
Have you tried installing the required parts locally (e.g. in your home directory) and just telling CMake to look there instead of the default system locations? On Sun, Nov 15, 2015 at 9:52 AM, Cedric Doucet wrote: > > Thank you Gregor! > > As I feared, this solution does

Re: [CMake] How to build cmake to have http support?

2015-11-15 Thread Cedric Doucet
Yes, I finally managed to do it! :) This is exactly what I did! Thank you! - Mail original - > De: "Nicholas Braden" > À: "Cedric Doucet" > Cc: cmake@cmake.org > Envoyé: Dimanche 15 Novembre 2015 21:21:35 > Objet: Re: [CMake] How

Re: [CMake] Benchmarking with CMake

2015-11-15 Thread Alexander Neundorf
On Friday, November 13, 2015 14:41:35 Nagy-Egri Máté Ferenc via CMake wrote: > Thank you all for your resonses, > > My use case is that I have a set of executables that function as unit tests. > Currently I use the return value of the .exe as a means of indicating > success, though I know there

[CMake] CMake fails to find sys/event.h on FreeBSD 10.2

2015-11-15 Thread Klemen Ferjančič
FreeBSD 10.2-STABLE CMake 3.3.1 Our projects needs kqueue which means that sys/types.h and sys/event.h need to be found. Googling around also revealed that event.h is not self inclusive but depends on type.h. Not sure if that has to do with anything though. CMakeLists.txt:

Re: [cmake-developers] Add command line options for deprecation message control

2015-11-15 Thread Michael Scott
Here's also a further patch for this set, to add the option to suppress deprecated warning messages to the QT GUI. I'm not sure if it matters or not about the "[PATCH 1/X]" in the patch's subject line, so I've attached the other patches in the set again just with an updated count, in case it

[Cmake-commits] CMake branch, master, updated. v3.4.0-523-g64b3df7

2015-11-15 Thread Kitware Robot
_VERSION_MINOR 4) -set(CMake_VERSION_PATCH 20151115) +set(CMake_VERSION_PATCH 20151116) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/

Re: [CMake] CMake fails to find sys/event.h on FreeBSD 10.2

2015-11-15 Thread Rolf Eike Beer
Am Montag, 16. November 2015, 00:34:01 schrieb Klemen Ferjančič: > FreeBSD 10.2-STABLE > CMake 3.3.1 > > Our projects needs kqueue which means that sys/types.h and sys/event.h > need to be found. Googling around also revealed that event.h is not self > inclusive but depends on type.h. Not sure if