You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
If UBT is building a non-editor configuration it throws an error if the produced binaries has non-redistributable dependencies. User can avoid throwing error and change it to warning at the end with flag BuildConfiguration.bBreakBuildOnLicenseViolation = false. In general module to be redistributable it must not be neither Development nor Editor type. This behavior can be overridden though. One have to just assign true or false to IsRedistributableOverride field of ModuleRules in <ModuleName>.Build.cs file. UBT will not check for the dependencies also if the module being built is non-redistributable (e.g. some internal programs). #ttp 335755 #codereview Robert.Manuszewski [CL 2225366 by Jaroslaw Palczynski in Main branch]