@@ -186,24 +186,26 @@ fn main() {
186
186
dependencies:: build_android_deps ( for_ci) ;
187
187
}
188
188
}
189
- "build-streamer" => build:: build_streamer ( profile, gpl, None , false , keep_config) ,
190
- "build-launcher" => build:: build_launcher ( profile, false ) ,
189
+ "build-streamer" => {
190
+ build:: build_streamer ( profile, true , gpl, None , false , keep_config)
191
+ }
192
+ "build-launcher" => build:: build_launcher ( profile, true , false ) ,
191
193
"build-client" => build:: build_android_client ( profile) ,
192
194
"build-client-lib" => build:: build_client_lib ( profile, link_stdcpp) ,
193
195
"run-streamer" => {
194
196
if !no_rebuild {
195
- build:: build_streamer ( profile, gpl, None , false , keep_config) ;
197
+ build:: build_streamer ( profile, true , gpl, None , false , keep_config) ;
196
198
}
197
199
run_streamer ( ) ;
198
200
}
199
201
"run-launcher" => {
200
202
if !no_rebuild {
201
- build:: build_launcher ( profile, false ) ;
203
+ build:: build_launcher ( profile, true , false ) ;
202
204
}
203
205
run_launcher ( ) ;
204
206
}
205
207
"package-streamer" => packaging:: package_streamer ( gpl, root, appimage, zsync) ,
206
- "package-launcher" => packaging:: package_launcher ( ) ,
208
+ "package-launcher" => packaging:: package_launcher ( appimage ) ,
207
209
"package-client" => build:: build_android_client ( Profile :: Distribution ) ,
208
210
"package-client-lib" => packaging:: package_client_lib ( link_stdcpp) ,
209
211
"clean" => clean ( ) ,
0 commit comments