Re: [CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-08-09 Thread Wheeler, Gavin via CMake
-italian.co.uk On Behalf Of Chris Wilson Sent: 08 August 2018 12:29 To: Wheeler, Gavin Cc: cmake@cmake.org Subject: Re: [CMake] Boost + CMake + Windows + Sanity -> Possible? Hi all, I solved this problem (or a very similar one) by using a CMake superbuild<https://

Re: [CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-08-08 Thread Wheeler, Gavin
: CMake [mailto:cmake-boun...@cmake.org] On Behalf Of Mateusz Loskot Sent: 07 August 2018 17:34 To: cmake@cmake.org Subject: Re: [CMake] Boost + CMake + Windows + Sanity -> Possible? On 7 August 2018 at 18:15, Wheeler, Gavin wrote: > [...] > 1. Look in C:\Program > Files\CMake\sha

Re: [CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-08-07 Thread Mateusz Loskot
On 7 August 2018 at 18:15, Wheeler, Gavin wrote: > [...] > 1. Look in C:\Program > Files\CMake\share\cmake-3.9\Modules\FindBoost.cmake Rule #1: never use CMake older than the latest release! Rule #2: if you die hard for old CMake, force use of the latest FindBoost.cmake if (CMAKE_VERSION

Re: [CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-08-07 Thread Wheeler, Gavin
tea Best Regards, Gavin From: CMake [mailto:cmake-boun...@cmake.org] On Behalf Of Dvir Yitzchaki Sent: 15 July 2018 08:27 To: Innokentiy Alaytsev ; cmake@cmake.org Subject: Re: [CMake] Boost + CMake + Windows + Sanity -> Possible? I recommend using Hunter package manager: https://docs.hunter

Re: [CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-07-15 Thread Dvir Yitzchaki
+ Windows + Sanity -> Possible? Hello! First of all, I suggest you use Boost imported targets instead of Boost_INCLUDE_DIRS and Boost_LIBRARY_DIRS and the target_include_directories() and target_link_libraries() functions. Al this is to better support exporting CMake package if you n

Re: [CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-07-12 Thread Innokentiy Alaytsev
Hello! First of all, I suggest you use Boost imported targets instead of Boost_INCLUDE_DIRS and Boost_LIBRARY_DIRS and the target_include_directories() and target_link_libraries() functions. Al this is to better support exporting CMake package if you need it. If you do not produce CMake package

[CMake] Boost + CMake + Windows + Sanity -> Possible?

2018-07-12 Thread Wheeler, Gavin
Hello! First the short version... Can anyone give me a set of instructions to download, build and setup the latest Boost (currently 1.67) on Windows 10 for VS 2017 64bit such that the following will work... find_package(Boost REQUIRED COMPONENTS system filesystem thread date_time