[CMake] How are modules tested?

2016-11-02 Thread Robert Ramey
I've been having difficulties creating an Xcode project. In the course of this work, I've had occasion to investigate the FindBoost.cmake file. Looking at it - I don't see how it can possible work. On my system libraries are created libboost___abi.a and I don't see anything similar to this.

[CMake] CPACK WIX shortcuts

2016-11-02 Thread Tiago Macarios
Hi, I am trying to create an installer with CPACK and WIX as generator. Everything works fine except that I cannot get start menu shortcuts to work. I was using almost the same code as the link below (which seems to be the unit tests for this feature), then I tried to build the unit test and I st

Re: [CMake] Building CMake without Curl

2016-11-02 Thread Chuck Atkins
Hi Jayesh, CMake includes internal versions of all the dependencies it needs to build. You have the option of using an external system-supplied version but it's certainly not required. Without OpenSSL you'll just have a cmake that can't use https, certainly not the end of the world. The default

Re: [CMake] Building CMake without Curl

2016-11-02 Thread Elizabeth A. Fischer
Jayesh, Use Spack. Spack has no problem auto-building CMake for you, along with curl and whatever else it needs. https://github.com/llnl/spack/ -- Elizabeth On Wed, Nov 2, 2016 at 1:08 PM, Jayesh Badwaik wrote: > Hi, > > Is there a way to build CMake without curl? I am currently in an > env

[CMake] Building CMake without Curl

2016-11-02 Thread Jayesh Badwaik
Hi, Is there a way to build CMake without curl? I am currently in an environment where I have no openssl-dev packages nor libcurl-dev packages. So, if I want to build CMake, I will need to build openssl-dev myself which I do not want to do. I can ask my sysadmin for the packages, but I was wo