File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,10 @@ Here is a list of most feature tags in Godot. Keep in mind they are **case-sensi
108
108
+--------------------+----------------------------------------------------------+
109
109
| **web ** | Host OS is a Web browser |
110
110
+--------------------+----------------------------------------------------------+
111
+ | **nothreads ** | Running without threads support |
112
+ +--------------------+----------------------------------------------------------+
113
+ | **threads ** | Running with threads support |
114
+ +--------------------+----------------------------------------------------------+
111
115
| **web_android ** | Host OS is a Web browser running on Android |
112
116
+--------------------+----------------------------------------------------------+
113
117
| **web_ios ** | Host OS is a Web browser running on iOS |
Original file line number Diff line number Diff line change @@ -66,6 +66,16 @@ Here is an example of what that can look like:
66
66
linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"
67
67
68
68
69
+ Libraries are processed in order, so if two sets of feature tags could match
70
+ the same system, be sure to put the more specific ones first:
71
+
72
+ .. code-block :: none
73
+
74
+ [libraries]
75
+
76
+ linux.release.editor.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so"
77
+ linux.release.x86_64 = "res://bin/libgdexample.linux.noeditor.template_release.x86_64.so"
78
+
69
79
Here are lists of some of the available built-in options (for more look at the :ref: `feature tags <doc_feature_tags >`):
70
80
71
81
Running system
You can’t perform that action at this time.
0 commit comments