mafulechka
mafulechkaApril 12, 2020, 4:58 a.m.

New features in CMake 3.17

On March 20, Kitware released CMake 3.17.
Below are some changes that should improve the life of a Qt developer using CMake.


Ninja Multi-Config Generator

This generator is similar to the Ninja generator but can be used to create multiple configurations at the same time.

This function is similar to the debug_and_release function in qmake.

The reference documentation for the Ninja Multi-Config generator has all the little details.

Using debug_and_release would look like:

cmake -G"Ninja Multi-Config" \
  -DCMAKE_CONFIGURATION_TYPES=Release;Debug \
  -DCMAKE_DEFAULT_CONFIGS=all \
  -DCMAKE_CROSS_CONFIGS=all \
  -S source_dir \
  -B build_dir
cmake --build build_dir

iOS multi-architecture for Ninja/Makefile generators

Now you can compile "fat" (multi-architecture) binaries for iOS right away.
Using the command line would look like:

cmake -GNinja \
  -DCMAKE_BUILD_TYPE=Release \
  -DCMAKE_SYSTEM_NAME=iOS \
  -DCMAKE_OSX_ARCHITECTURES=arm64;x86_64
  -S source_dir \
  -B build_dir
cmake --build build_dir

AUTOGEN uses dependency files of generated moc files

Qt 5.15 brings us an updated moc that can generate a dependency file, which in turn will be used by Ninja to (re)build only the necessary bits.

This means that for a project like Qt Creator, a zero build will be faster since all AUTOGEN targets will no longer need to be built.

With Windows 10 developers tested CMake 3.17, Ninja 1.10, Qt 5.15.0 with Qt Creator and zero builds (5 runs average) went from 4.6 seconds with CMake 3.16 to 2.4 seconds with CMake 3.17 !

Qt Creator still has a few custom targets to accomplish (copying shared files, including files, etc.) and fill those 2.4 seconds.

Ninja does not restart CMake after configuration

You may have noticed that after opening a CMake project in Qt Creator and clicking the "Build" button, Ninja will restart CMake on an already configured project.

Depending on the size of the project or platform, this can be very annoying. Qt Creator CMake configuration can take up to 30 seconds on a Windows 10 development machine.

With Ninja version 1.10 and CMake version 3.17 this annoying behavior is gone!

The Qt SDK includes Ninja and CMake, unfortunately version 1.9 of Ninja and version 3.16 of CMake.

Cache and precompile headers

For projects that use a header file to speed up compilation via precompiled headers and use ccache to cache build artifacts, ccache will now have a 100% cache hit rate!

CMake will copy the header timestamp for its internal precompiled header mechanism and ccache won't think the PCH artifact is too new.

Qt Creator uses the src/shared/qtcreator_gui_pch.h header.

For ccache, include_file_mtime must be specified.

At the moment this only works with GCC. CMake Clang precompile header configuration is not supported by ccache.

Generate healthy zip and 7zip archives

CMake via cmake -E command line tar can extract tar.gz, tar.bz, tar.xz, tar.zstd, zip, 7z archives or create archives.

This can be useful on CI systems where all platforms do not have the necessary tools installed but CMake is installed.

Zip and 7zip archives will contain the current directory. in the archive. While this does not create problems for tar archives, a Zip archive cannot be opened on Windows using Windows Explorer, and a 7zip archive can cause problems (crashes) on KDE.

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
AD

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:50points,
  • Rating points-4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:80points,
  • Rating points4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:20points,
  • Rating points-10
Last comments
Evgenii Legotckoi
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 6:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 9:02 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
k
kmssrFeb. 9, 2024, 5:43 a.m.
Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
Now discuss on the forum
Evgenii Legotckoi
Evgenii LegotckoiJune 25, 2024, 1:11 a.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 5:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 1:49 p.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…
9
9AnonimOct. 25, 2024, 7:10 p.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

Follow us in social networks