MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetAppName

Function GetAppName

Source/Editor/Cooker/Platform/Mac/MacPlatformTools.cpp:27–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25namespace
26{
27 String GetAppName()
28 {
29 const auto gameSettings = GameSettings::Get();
30 String productName = gameSettings->ProductName;
31 productName.Replace(TEXT(" "), TEXT(""));
32 productName.Replace(TEXT("."), TEXT(""));
33 productName.Replace(TEXT("-"), TEXT(""));
34 return productName;
35 }
36
37 bool CodeSign(const String& file, const String& signIdentity)
38 {

Callers 2

OnBuildStartedMethod · 0.70
OnPostProcessMethod · 0.70

Calls 2

ReplaceMethod · 0.80
GetFunction · 0.50

Tested by

no test coverage detected