@@ -38,7 +38,7 @@ package("aui")
38
38
39
39
-- aui.core
40
40
on_component (" core" , function (package , component )
41
- component :add (" includedirs" , " aui.core/include" )
41
+ package :add (" includedirs" , " aui.core/include" )
42
42
component :add (" links" , " aui.core" )
43
43
package :add (" deps" , " fmt 9.1.0" , " range-v3" )
44
44
if package :is_plat (" linux" ) then
@@ -53,7 +53,7 @@ package("aui")
53
53
54
54
-- aui.crypt
55
55
on_component (" crypt" , function (package , component )
56
- component :add (" includedirs" , " aui.crypt/include" )
56
+ package :add (" includedirs" , " aui.crypt/include" )
57
57
component :add (" links" , " aui.crypt" )
58
58
package :add (" deps" , " openssl3" )
59
59
if package :is_plat (" windows" , " mingw" ) then
@@ -63,27 +63,27 @@ package("aui")
63
63
64
64
-- aui.curl
65
65
on_component (" curl" , function (package , component )
66
- component :add (" includedirs" , " aui.curl/include" )
66
+ package :add (" includedirs" , " aui.curl/include" )
67
67
component :add (" links" , " aui.curl" )
68
68
package :add (" deps" , " libcurl" )
69
69
end )
70
70
71
71
-- aui.image
72
72
on_component (" image" , function (package , component )
73
- component :add (" includedirs" , " aui.image/include" )
73
+ package :add (" includedirs" , " aui.image/include" )
74
74
component :add (" links" , " aui.image" )
75
75
package :add (" deps" , " lunasvg" , " libwebp" )
76
76
end )
77
77
78
78
-- aui.json
79
79
on_component (" json" , function (package , component )
80
- component :add (" includedirs" , " aui.json/include" )
80
+ package :add (" includedirs" , " aui.json/include" )
81
81
component :add (" links" , " aui.json" )
82
82
end )
83
83
84
84
-- aui.network
85
85
on_component (" network" , function (package , component )
86
- component :add (" includedirs" , " aui.network/include" )
86
+ package :add (" includedirs" , " aui.network/include" )
87
87
component :add (" links" , " aui.network" )
88
88
if package :is_plat (" windows" , " mingw" ) then
89
89
component :add (" syslinks" , " wsock32" , " ws2_32" , " iphlpapi" )
@@ -92,19 +92,19 @@ package("aui")
92
92
93
93
-- aui.toolbox
94
94
on_component (" toolbox" , function (package , component )
95
- component :add (" includedirs" , " aui.toolbox/include" )
95
+ package :add (" includedirs" , " aui.toolbox/include" )
96
96
end )
97
97
98
98
-- aui.uitests
99
99
on_component (" uitests" , function (package , component )
100
- component :add (" includedirs" , " aui.uitests/include" )
100
+ package :add (" includedirs" , " aui.uitests/include" )
101
101
component :add (" links" , " aui.uitests" )
102
102
package :add (" deps" , " gtest" , " benchmark" )
103
103
end )
104
104
105
105
-- aui.views
106
106
on_component (" views" , function (package , component )
107
- component :add (" includedirs" , " aui.views/include" )
107
+ package :add (" includedirs" , " aui.views/include" )
108
108
component :add (" links" , " aui.views" )
109
109
package :add (" deps" , " freetype" )
110
110
if package :is_plat (" windows" , " mingw" , " linux" , " macosx" ) then
@@ -126,7 +126,7 @@ package("aui")
126
126
127
127
-- aui.xml
128
128
on_component (" xml" , function (package , component )
129
- component :add (" includedirs" , " aui.xml/include" )
129
+ package :add (" includedirs" , " aui.xml/include" )
130
130
component :add (" links" , " aui.xml" )
131
131
end )
132
132
0 commit comments