@@ -186,24 +186,26 @@ fn main() {
186186 dependencies:: build_android_deps ( for_ci) ;
187187 }
188188 }
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 ) ,
191193 "build-client" => build:: build_android_client ( profile) ,
192194 "build-client-lib" => build:: build_client_lib ( profile, link_stdcpp) ,
193195 "run-streamer" => {
194196 if !no_rebuild {
195- build:: build_streamer ( profile, gpl, None , false , keep_config) ;
197+ build:: build_streamer ( profile, true , gpl, None , false , keep_config) ;
196198 }
197199 run_streamer ( ) ;
198200 }
199201 "run-launcher" => {
200202 if !no_rebuild {
201- build:: build_launcher ( profile, false ) ;
203+ build:: build_launcher ( profile, true , false ) ;
202204 }
203205 run_launcher ( ) ;
204206 }
205207 "package-streamer" => packaging:: package_streamer ( gpl, root, appimage, zsync) ,
206- "package-launcher" => packaging:: package_launcher ( ) ,
208+ "package-launcher" => packaging:: package_launcher ( appimage ) ,
207209 "package-client" => build:: build_android_client ( Profile :: Distribution ) ,
208210 "package-client-lib" => packaging:: package_client_lib ( link_stdcpp) ,
209211 "clean" => clean ( ) ,
0 commit comments