UE4 로 작업할 때 IncrediBuild 가 설치되어 있어도 쓰고 싶지 않은 경우가 있다. IncrediBuild agent 를 disable 하면 서버 접속할 수 없다는 오류가 뜬다.
다음과 같이 BuildConfiguration.xml 을 설정하면 된다.
경로는 %appData%\Unreal Engine\UnrealBuildTool\BuildConfiguration.xml 이 최우선인 것 같다.
<?xml version="1.0" encoding="utf-8" ?><Configuration xmlns="https://www.unrealengine.com/BuildConfiguration">
<BuildConfiguration>
<bAllowXGE>false</bAllowXGE>
</BuildConfiguration>
</Configuration>
출처 : https://answers.unrealengine.com/questions/488246/how-to-disable-incredibuild.html
728x90