ソースを参照

Merge pull request #93563 from mihe/nothreads-feature

Add `nothreads` feature tag to signify lack of `THREADS_ENABLED`
Rémi Verschelde 1 年間 前
コミット
6b281c0c07
1 ファイル変更4 行追加0 行削除
  1. 4 0
      core/os/os.cpp

+ 4 - 0
core/os/os.cpp

@@ -513,6 +513,10 @@ bool OS::has_feature(const String &p_feature) {
 	if (p_feature == "threads") {
 		return true;
 	}
+#else
+	if (p_feature == "nothreads") {
+		return true;
+	}
 #endif
 
 	if (_check_internal_feature_support(p_feature)) {