diff --git a/cmake/configure-cmake-mapping.md b/cmake/configure-cmake-mapping.md index 382575cf08a..975aadfdb75 100644 --- a/cmake/configure-cmake-mapping.md +++ b/cmake/configure-cmake-mapping.md @@ -50,6 +50,7 @@ The following table describes the mapping of configure options to CMake argument | -sbom-json-required | -DQT_SBOM_REQUIRE_GENERATE_JSON=ON | Fails the build if Python deps are not found | | -sbom-verify | -DQT_SBOM_VERIFY=ON | Enables verification of generated SBOMs | | -sbom-verify-required | -DQT_SBOM_REQUIRE_VERIFY=ON | Fails the build if Python deps are not found | +| -sbomdir | -DINSTALL_SBOMDIR= | Installation location of SBOM files. | | -qtinlinenamespace | -DQT_INLINE_NAMESPACE=ON | Make the namespace specified by -qtnamespace an inline one. | | -qtnamespace | -DQT_NAMESPACE= | | | -qtlibinfix | -DQT_LIBINFIX= | | diff --git a/qt_cmdline.cmake b/qt_cmdline.cmake index a30031135db..740bcc89dad 100644 --- a/qt_cmdline.cmake +++ b/qt_cmdline.cmake @@ -24,6 +24,7 @@ qt_commandline_option(libdir TYPE string) qt_commandline_option(libexecdir TYPE string) qt_commandline_option(plugindir TYPE string) qt_commandline_option(qmldir TYPE string) +qt_commandline_option(sbomdir TYPE string) qt_commandline_option(settingsdir TYPE string NAME sysconfdir) qt_commandline_option(sysconfdir TYPE string) qt_commandline_option(testsdir TYPE string)