Last active
November 2, 2024 05:46
-
-
Save jeferwang/7bc94f4fa98acfe4cd35988699ec7398 to your computer and use it in GitHub Desktop.
Unreal Engine Source Code BuildConfiguration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- For AMD 5950X, 16 core 32 thread --> | |
<!-- reference: Engine\Saved\UnrealBuildTool\BuildConfiguration.Schema.xsd --> | |
<Configuration xmlns="https://www.unrealengine.com/BuildConfiguration"> | |
<!-- force use 32 thread --> | |
<BuildConfiguration> | |
<MaxParallelActions>32</MaxParallelActions> | |
</BuildConfiguration> | |
<!-- force use 32 thread and 2 thread one core (for ue5) --> | |
<TaskExecutor> | |
<ProcessorCountMultiplier>2</ProcessorCountMultiplier> | |
<MaxProcessorCount>32</MaxProcessorCount> | |
<MemoryPerActionBytes>0</MemoryPerActionBytes> | |
</TaskExecutor> | |
<!-- force use 32 thread and 2 thread one core (for ue5) --> | |
<ParallelExecutor> | |
<ProcessorCountMultiplier>2</ProcessorCountMultiplier> | |
<MaxProcessorCount>32</MaxProcessorCount> | |
<MemoryPerActionBytes>0</MemoryPerActionBytes> | |
</ParallelExecutor> | |
<!-- Fix Error: Visual Studio 2019 x64 must be installed in order to build this target --> | |
<VCProjectFileGenerator> | |
<Version>VisualStudio2022</Version> | |
</VCProjectFileGenerator> | |
<!-- Fix Error: Visual Studio 2019 x64 must be installed in order to build this target --> | |
<WindowsPlatform> | |
<Compiler>VisualStudio2022</Compiler> | |
</WindowsPlatform> | |
</Configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment