[Development] wip/cmake status information

Stephen Kelly steveire at gmail.com
Mon Oct 29 23:55:58 CET 2018


Tomasz Siekierda wrote:

> On Mon, 29 Oct 2018 at 13:31, Tobias Hunger <Tobias.Hunger at qt.io> wrote:
>>
>> Hi!
>> [...]
>> # Building
>>
>> The basic way of building with cmake is as follows:
>>
>> ```
>>      cd {build directory}
>>      cmake {path to source directory}
>>      cmake --build .
>> ```
> 
> Just a quick question wrt to that snippet: what is the planed way of
> building Qt after the whole transition is done? Will it be cmake &&
> make, or configure && make, or configure && cmake && make?

cmake .. -G Ninja
or
cmake .. -G "Visual Studio 15 2017"
or 
cmake-gui

etc

then 

cmake --build . --target install

or 

cmake --build . --target install --config release

if on Windows.

Thanks,

Stephen.





More information about the Development mailing list