UnrealEngine虚幻引擎编译选项

配置参数

Window指定编译SDK

修改Engine/Saved/UnrealBuildTool/BuildConfiguration.xml中的配置,添加MSVC版本号、SDK的版本号。

1
2
3
4
<WindowsPlatform>
    <CompilerVersion >14.40.33807</CompilerVersion>
    <WindowsSdkVersion>10.0.20348.0</WindowsSdkVersion>
</WindowsPlatform>

最终示例

配置文件形如:

1
2
3
4
5
6
<?xml version="1.0" encoding="utf-8" ?>
<Configuration xmlns="https://www.unrealengine.com/BuildConfiguration">
    <WindowsPlatform>
        <WindowsSdkVersion>10.0.19041.0</WindowsSdkVersion>
    </WindowsPlatform>
</Configuration>

参考文章

Build Configuration for Unreal Engine | Unreal Engine 5.5 Documentation | Epic Developer Community

该内容采用 CC BY-NC-SA 4.0 许可协议。

如果对您有帮助或存在意见建议,欢迎在下方评论交流。