-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBugSplat.uplugin
More file actions
58 lines (58 loc) · 2.18 KB
/
BugSplat.uplugin
File metadata and controls
58 lines (58 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"FileVersion": 3,
"Version": "1.2",
"VersionName": "1.7.0",
"FriendlyName": "BugSplat",
"Description": "BugSplat provides crash reporting for Unreal projects, and gives invaluable insight into the issues tripping up your users.",
"Category": "Code Plugins",
"CreatedBy": "BugSplat",
"CreatedByURL": "https://www.bugsplat.com",
"DocsURL": "https://docs.bugsplat.com/introduction/getting-started/integrations/game-development/unreal-engine#unreal-engine-plugin",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/f26128f947f5471fa7d24184545b3d09",
"SupportURL": "https://www.bugsplat.com",
"EnabledByDefault": true,
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,
"Modules": [
{
"Name": "BugSplat",
"Type": "Editor",
"LoadingPhase": "Default"
},
{
"Name": "BugSplatRuntime",
"Type": "Runtime",
"LoadingPhase": "Default",
"WhitelistPlatforms": [
"Win64",
"Mac",
"Android",
"IOS",
"Linux"
]
}
],
"PreBuildSteps": {
"Win64": [
"powershell -ExecutionPolicy Bypass -File \"$(PluginDir)\\Source\\Scripts\\pre-build-win64.ps1\" $(TargetName) \"$(PluginDir)\""
],
"Mac": [
"sh \"$(PluginDir)/Source/Scripts/pre-build-mac.sh\" $(TargetName) \"$(PluginDir)\""
],
"Linux": [
"sh \"$(PluginDir)/Source/Scripts/pre-build-linux.sh\" $(TargetName) \"$(PluginDir)\""
]
},
"PostBuildSteps": {
"Win64": [
"powershell -ExecutionPolicy Bypass -File \"$(PluginDir)\\Source\\Scripts\\post-build-win64.ps1\" $(TargetPlatform) $(TargetName) \"$(ProjectDir)\" \"$(PluginDir)\""
],
"Mac": [
"sh \"$(PluginDir)/Source/Scripts/post-build-mac.sh\" $(TargetPlatform) $(TargetName) \"$(ProjectDir)\" \"$(PluginDir)\""
],
"Linux": [
"sh \"$(PluginDir)/Source/Scripts/post-build-linux.sh\" $(TargetPlatform) $(TargetName) \"$(ProjectDir)\" \"$(PluginDir)\""
]
}
}