Skip to main content

CMake Configuration

There are several configurable CMake options. I'll quickly go over the most important here.

Backend

Example: Using Qt6 backend
set(saucer_backend "Qt6")

Define the backend to use. By default, the most appropriate for your platform will be used.

Modules

Example: Enable Modules
set(saucer_modules ON)

Enable module support for saucer. While all the headers required to use modules are always included, this option is used to ensure proper library and header visibility so that you can use the underlying platform internals without issues.

MSVC-Hack

Example: Enable MSVC Hack
set(saucer_msvc_hack ON)
note

You may require this option when developing language bindings.

Fixes crashes related to constexpr mutex constructor on Windows.
See the VS 2022 17.10 entry in the Microsoft/STL Changelog.

WebView2 Version

Example: Custom WebView2 version
set(saucer_webview2_version "1.0.2783-prerelease")

Explicitly define the version of the WebView2 NuGet package to use.