We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38e23de commit ac7379dCopy full SHA for ac7379d
1 file changed
Development/Tuist/Package.swift
@@ -2,6 +2,31 @@
2
3
import PackageDescription
4
5
+#if TUIST
6
+import ProjectDescription
7
+
8
+let packageSettings = PackageSettings(
9
+ productTypes: [
10
+ "BlueprintUI": .framework,
11
+ "BlueprintUICommonControls": .framework,
12
+ "BlueprintUILists": .framework,
13
+ "ListableUI": .framework,
14
+ ],
15
+ targetSettings: [
16
+ "BlueprintUILists": unsuppressedWarningsSettings,
17
+ "ListableUI": unsuppressedWarningsSettings,
18
+ ]
19
+)
20
21
+var unsuppressedWarningsSettings: SettingsDictionary {
22
+ [
23
+ "GCC_WARN_INHIBIT_ALL_WARNINGS": "NO",
24
+ "SWIFT_SUPPRESS_WARNINGS": "NO",
25
26
+}
27
28
+#endif
29
30
let package = Package(
31
name: "Development",
32
dependencies: [
0 commit comments