bSkipLibCpp

bSkipLibCpp

#Overview

name: bSkipLibCpp

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 1 C# build file meaning it may affect the build system logic.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseEngine.ini:3094, section: [/Script/AndroidRuntimeSettings.AndroidRuntimeSettings]

#References in C# build files

This variable is referenced in the following C# build files:

Location: <Workspace>/Engine/Source/Programs/UnrealBuildTool/Platform/Android/UEDeployAndroid.cs:5055


				bool bSkipLibCpp = false;
				Ini.GetBool("/Script/AndroidRuntimeSettings.AndroidRuntimeSettings", "bSkipLibCpp", out bSkipLibCpp);
				if (!bSkipLibCpp)
				{
					// after ndk-build is called, we can now copy in the stl .so (ndk-build deletes old files)
					// copy libc++_shared.so to library
					CopySTL(ToolChain, UnrealBuildPath, Arch, NDKArch, bForDistribution);
				}