-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.toml
57 lines (46 loc) · 2.48 KB
/
package.toml
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
########################################################################################################################
# Memo:
########################################################################################################################
# This file is used to configure content of packages.
# Mappings ($ string substitutions). Name and examples:
# |==========================================================
# | $platform | 'windows-x86_64' | 'linux-x86_64' |
# |----------------------------------------------------------
# | $lib_ext | '.dll' | '.so' |
# | $lib_prefix | '' | 'lib.' |
# | $bindings_ext | '.pyd' | '.so' |
# | $exe_ext | '.exe' | '' |
# | $shell_ext | '.bat' | '.sh' |
# |==========================================================
#
# |==========================================================
# | $config | 'debug' | 'release' |
# |==========================================================
# Filters. For example, if packaging carb_sdk, debug, on linux-x86_64 all those toml keys will be used for this package:
# [carb_sdk.linux-x86_64]
# [carb_sdk.debug]
# [carb_sdk.linux.debug]
# So you can use those in any order as a keys: ["carb_sdk", "linux-x86_64", "debug", "linux", "x86_64"]
########################################################################################################################
# Common section:
########################################################################################################################
files = []
########################################################################################################################
# example_extensions package
########################################################################################################################
[houdini-connector-launcher]
files = [
["_staging", ""],
["LauncherScripts/omniverse_template.json", ""],
["LauncherScripts/HoudiniConnectorInstall$shell_ext", ""],
["LauncherScripts/HoudiniConnectorUninstall$shell_ext", ""],
["LauncherScripts/license.txt", ""],
]
[omni_houdini_native_setup.linux-x86_64]
files = [
["_staging", ""],
["LauncherScripts/omniverse_template.json", ""],
["LauncherScripts/HoudiniConnectorInstall$shell_ext", ""],
["LauncherScripts/HoudiniConnectorUninstall$shell_ext", ""],
["LauncherScripts/license.txt", ""],
]