Re: [CMake] [CMAKE] Disable testing when building using bootstrap

2019-02-12 Thread Jon Haitz Legarreta Gorroño
Hi Robert, thanks. That answers the question ! Cheers, JON HAITZ On Tue, Feb 12, 2019 at 1:24 PM Robert Maynard wrote: > > You can pass CMake arguments to the bootstrap by doing: > > ./bootstrap -- -DBUILD_TESTING=OFF > > On Mon, Feb 11, 2019 at 12:03 PM Jon Haitz Legarreta Gorroño > wrote: >

Re: [CMake] [CMAKE] Disable testing when building using bootstrap

2019-02-12 Thread Robert Maynard via CMake
You can pass CMake arguments to the bootstrap by doing: ./bootstrap -- -DBUILD_TESTING=OFF On Mon, Feb 11, 2019 at 12:03 PM Jon Haitz Legarreta Gorroño wrote: > > Hi, > > I'm trying to build CMake from sources using the `bootstrap` script. > > Please, correct me if I'm wrong, but it looks like

[CMake] [CMAKE] Disable testing when building using bootstrap

2019-02-11 Thread Jon Haitz Legarreta Gorroño
Hi, I'm trying to build CMake from sources using the `bootstrap` script. Please, correct me if I'm wrong, but it looks like CMake is being built with `BUILD_TESTING=ON` by default. I'd like to disable testing (and any other non-essential option), but AFAIK bootstrap does not expose the