-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTempoROS.uplugin
More file actions
42 lines (42 loc) · 2.1 KB
/
TempoROS.uplugin
File metadata and controls
42 lines (42 loc) · 2.1 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
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "TempoROS",
"Description": "Add ROS support to your Unreal project via rclcpp\nNOTE: After enabling this plugin, users must run the Setup.sh script to download third party dependencies.",
"Category": "Tempo",
"CreatedBy": "Tempo Simulation, LLC",
"CreatedByURL": "http://temposimulation.com",
"DocsURL": "",
"MarketplaceURL": "",
"CanContainContent": true,
"IsBetaVersion": false,
"IsExperimentalVersion": false,
"Installed": false,
"Modules": [
{
"Name": "TempoROS",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "TempoROSBootstrap",
"Type": "Runtime",
"LoadingPhase": "EarliestPossible"
}
],
"PreBuildSteps": {
"Win64": [
"\"$(EngineDir)\\Binaries\\ThirdParty\\Python3\\Win64\\python.exe\" \"$(PluginDir)\\Content\\Python\\gen_ros_idl.py\" \"$(EngineDir)\" \"$(ProjectFile)\" \"$(ProjectDir)\" \"$(PluginDir)\" \"$(TargetName)\" \"$(TargetConfiguration)\" \"$(TargetPlatform)\" \"$(PluginDir)\\Source\\ThirdParty\\rclcpp\"",
"\"$(EngineDir)\\Binaries\\ThirdParty\\Python3\\Win64\\python.exe\" \"$(PluginDir)\\Content\\Python\\gen_ros_bp.py\" \"$(ProjectDir)\" \"$(PluginDir)\""
],
"Mac": [
"\"$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3\" \"$(PluginDir)/Content/Python/gen_ros_idl.py\" \"$(EngineDir)\" \"$(ProjectFile)\" \"$(ProjectDir)\" \"$(PluginDir)\" \"$(TargetName)\" \"$(TargetConfiguration)\" \"$(TargetPlatform)\" \"$(PluginDir)/Source/ThirdParty/rclcpp\"",
"\"$(EngineDir)/Binaries/ThirdParty/Python3/Mac/bin/python3\" \"$(PluginDir)/Content/Python/gen_ros_bp.py\" \"$(ProjectDir)\" \"$(PluginDir)\""
],
"Linux": [
"\"$(EngineDir)/Binaries/ThirdParty/Python3/Linux/bin/python3\" \"$(PluginDir)/Content/Python/gen_ros_idl.py\" \"$(EngineDir)\" \"$(ProjectFile)\" \"$(ProjectDir)\" \"$(PluginDir)\" \"$(TargetName)\" \"$(TargetConfiguration)\" \"$(TargetPlatform)\" \"$(PluginDir)/Source/ThirdParty/rclcpp\"",
"\"$(EngineDir)/Binaries/ThirdParty/Python3/Linux/bin/python3\" \"$(PluginDir)/Content/Python/gen_ros_bp.py\" \"$(ProjectDir)\" \"$(PluginDir)\""
]
}
}