Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Osman Zakir
Yeah, I forgot to type the 'c'. My mistake. From: CMake on behalf of Mateusz Loskot Sent: Tuesday, October 30, 2018 4:30 PM To: cmake@cmake.org Subject: Re: [CMake] About FindBoost.cmake On Tue, 30 Oct 2018 at 12:25, Osman Zakir wrote: > > So just

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Mateusz Loskot
On Tue, 30 Oct 2018 at 12:25, Osman Zakir wrote: > > So just "make -A x64 -DBOOST_ROOT:PATH=D:\boost.win"? No. The comand I pasted reads "cmake -A x64 -DBOOST_ROOT:PATH=D:\boost.win" ^^^ cmake not make > Speaking of x64 vs. x86, I think CMake needs to be able to include the option > to

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Osman Zakir
the story on that? From: CMake on behalf of Mateusz Loskot Sent: Tuesday, October 30, 2018 4:18 PM To: cmake@cmake.org Subject: Re: [CMake] About FindBoost.cmake On Tue, 30 Oct 2018 at 12:09, Osman Zakir wrote: > > Nice. So what command did you run to configure CMake? I inc

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Mateusz Loskot
y! ML > > From: CMake on behalf of Mateusz Loskot > > Sent: Tuesday, October 30, 2018 2:55 PM > To: cmake@cmake.org > Subject: Re: [CMake] About FindBoost.cmake > > On Tue, 30 Oct 2018 at 10:54, Mateusz Loskot wrote: > > [...] > > D:

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Mateusz Loskot
On Tue, 30 Oct 2018 at 10:54, Mateusz Loskot wrote: > [...] > D:\_\workshop\test_boost\_build.vs2017 cmake -A x64 > -DBOOST_ROOT:PATH=D:\boost.win .. > -- Building for: Visual Studio 15 2017 > -- The C compiler identification is MSVC 19.15.26730.0 > -- The CXX compiler identification is MSVC

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Mateusz Loskot
On Tue, 30 Oct 2018 at 10:24, Mateusz Loskot wrote: > On Tue, 30 Oct 2018 at 10:17, Osman Zakir wrote: > > > > Yes, but this might also be why it can't find more than "some" of the Boost > > libraries. It looks for "-d" even though I'm using the "-gd" ones. > > How do you know it looks for -d?

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Mateusz Loskot
On Tue, 30 Oct 2018 at 10:17, Osman Zakir wrote: > > Yes, but this might also be why it can't find more than "some" of the Boost > libraries. It looks for "-d" even though I'm using the "-gd" ones. How do you know it looks for -d? Sorry, but you are not showing any cmake command line, any bit

Re: [CMake] About FindBoost.cmake

2018-10-30 Thread Mateusz Loskot
On Tue, 30 Oct 2018 at 00:29, Osman Zakir wrote: > > I noticed that FindBoost.cmake has "-d" set as the Boost debug ABI tag even > though the Boost libraries actually use "-gd". -d comes from variant=debug option when you build Boost -g comes from runtime-debugging=on You've got it explained

Re: [CMake] About FindBoost.cmake

2018-10-29 Thread Michael Ellery
I’m guessing you want to set Boost_USE_DEBUG_RUNTIME: https://github.com/Kitware/CMake/blob/master/Modules/FindBoost.cmake#L1467 > On Oct 29, 2018, at 4:29 PM, Osman Zakir wrote: > > Hi again, everyone. > > I noticed that FindBoost.cmake has "-d" set as the Boost debug ABI tag even > though

[CMake] About FindBoost.cmake

2018-10-29 Thread Osman Zakir
Hi again, everyone. I noticed that FindBoost.cmake has "-d" set as the Boost debug ABI tag even though the Boost libraries actually use "-gd". I installed the latet release of CMake just now, which has Boost 1.68.0 listed as a test version, and it has this problem too. For Boost.Filesystem,