[CMake] VERSION and SOVERSION target properties on OS X

2014-10-10 Thread Steven Velez
Forgive me if this question has been answered before but with CMAKE 2.8.12 (I believe) xcode builds on OS X started generating shared libraries decorated with the "VERSION" target property and symlinked by a bare dylib name and one decorated with the SOVERSION. I understand this is common practice

Re: [CMake] Quoting and Escapes

2014-10-10 Thread Petr Kmoch
Hi Christian. Were you perhaps looking for INCLUDE_DIRECTORIES("C:/Program Files (x86)/somepath") instead? Petr On Fri, Oct 10, 2014 at 12:07 PM, Nils Gladitz wrote: > On 10/10/2014 11:48 AM, Dr. Christian Verbeek wrote: > > INCLUDE( "C:/Program Files (x86)/somepath" ) >> -> include could

Re: [CMake] Quoting and Escapes

2014-10-10 Thread Nils Gladitz
On 10/10/2014 11:48 AM, Dr. Christian Verbeek wrote: INCLUDE( "C:/Program Files (x86)/somepath" ) -> include could not find load file: somepath This one should work as-is. Is "somepath" an existing regular CMake script (text file)? Nils -- Powered by www.kitware.com Please keep messages on

[CMake] Quoting and Escapes

2014-10-10 Thread Dr. Christian Verbeek
Dear cmake users, I am using cmake 3.0.2 on WIndows. INCLUDE( C:/Program Files (x86)/somepath ) -> include called with wrong number of arguments. include() only takes one file. Ok. Because of the white spaces. INCLUDE( "C:/Program Files (x86)/somepath" ) -> include could not find load file