Re: [CMake] Copying DLLs to output directory

2014-10-29 Thread Hendrk Sattler
Am 2014-10-28 18:25, schrieb Robert Dailey: I have a third party library like OpenSSL prebuilt for each platform and in my own structure in version control. I have a CMake script that creates an INTERFACE library target for it. I setup the include directories and link targets. However, I don't

Re: [CMake] [ANNOUNCE] CMake 3.1.0-rc1 now ready for testing!

2014-10-29 Thread Hendrk Sattler
Am 2014-10-28 19:16, schrieb Robert Maynard: * The FindZLIB module now provides imported targets. Either the provided modules go the whole way for imported target or they just don't provide them. However: 113 if(ZLIB_FOUND) 114 set(ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR}) 115

Re: [CMake] CMake 3.0-rc1 now ready for testing!

2014-03-03 Thread Hendrk Sattler
Am 2014-02-28 20:28, schrieb Robert Maynard: * The COMPILE_DEFINITIONS_CONFIG directory properties and the COMPILE_DEFINITIONS_CONFIG target properties have been deprecated. Instead set the corresponding COMPILE_DEFINITIONS directory property or COMPILE_DEFINITIONS target property and use

Re: [CMake] Help debug crazy Windows MSVC issue

2014-02-17 Thread Hendrk Sattler
Am 2014-02-17 07:36, schrieb Paul Smith: On Mon, 2014-02-17 at 00:20 -0500, Paul Smith wrote: On Sun, 2014-02-16 at 22:38 -0500, David Cole wrote: How can I structure my cmake file to avoid this double build? Put the custom command in a custom target, and make the libraries using the

Re: [CMake] Help debug crazy Windows MSVC issue

2014-02-17 Thread Hendrk Sattler
Am 2014-02-17 10:20, schrieb Hendrk Sattler: Visual Studio 10 totally relies on the custom build tool to protect itself when run in parallel. It will run the generator as many times as the bar.cpp is mentioned in different targets, even in parallel if that is enabled. And that's what you see