I've downloaded, extracted, and compiled the Boost libraries (including the separately compiled libraries). I've used their install procedure a couple times now but I can't seem to get it to do exactly what I want. Right now, when I install Boost after compiling it goes to
C:\Boost
This is fine. The compiled libs go to
C:\Boost\lib
which is also fine. The problem I have is with the installation of the precompiled headers. They got put at
C:\Boost\include\boost-1_54\boost
Is there a way to use the Boost build system and install tools to set the precompiled headers to be installed to just
C:\Boost\include
and not have the Boost version number be a part of that folder hierarchy?
I don't plan on using multiple versions of Boost at the same time so I don't have a use for actually having that version number. I realize I could move them manually after the install is complete, but I wanted to see first if I've overlooked or misunderstood something about Boost's build system.
bootstrapand then.\b2 -j8 --prefix=C:\Boost --libdir=C:\Boost\lib --includedir=C:\Boost\include install. The precompiled headers are the hpp files that don't require compilation to be used, the files that go in the include directory.--layout=system?--layout=systemI also had to specify which variant I was building (I decided to default to release for now) in order to prevent filename clashing on the libs. The problem is the include directory still looks likeC:\Boost\include\boost\[all hpp files]. Is there any way to get rid of that second "boost" in the path? EDIT Sorry, I just realized I mistyped one of the options on the prompt. I'll try one more time. EDIT 2 Ok, I've fixed the command line issue but it's still adding that second Boost in the path.Boost.Buildyou can do virtually anything, but this going to be not so trivial. I guess you'll have to customize your target usinguser-config.jamfile (boost.org/doc/display_build.php/boost-build/boost-build/doc/…). Besides, try posting to boost-users ML.