QT_WINDOWS_APP_PROJECT_IDENTIFIER

Assembly identity name in the generated Windows application manifest.

This property was introduced in Qt 6.12.

Note: This property is used only if targeting Windows.

Sets the name attribute of the assemblyIdentity element in the application manifest that Qt automatically generates for Windows executables built with qt_add_executable().

The value must be a dot-separated string, for example org.example.myapp.

If this property is not set, the default value is com.yourcompany.<target_name>.

If the target already provides a .manifest file in its sources, Qt skips automatic manifest generation and this property has no effect.

 set_target_properties(myapp PROPERTIES
     QT_WINDOWS_APP_PROJECT_IDENTIFIER "org.example.myapp"
 )

See also Qt for Windows - Deployment and QT_WINDOWS_APP_PROJECT_EXECUTION_LEVEL.