2025-01-07 01:25:05 +01:00
|
|
|
t: new
|
|
|
|
o: .mozconfig
|
|
|
|
|
2025-01-28 00:54:11 +01:00
|
|
|
// Update channel configuration
|
2025-01-07 01:25:05 +01:00
|
|
|
+ac_add_options --enable-update-channel=release
|
|
|
|
|
2025-01-28 00:54:11 +01:00
|
|
|
// Application name and branding
|
2025-01-07 01:25:05 +01:00
|
|
|
+ac_add_options --with-app-name=spitfire
|
|
|
|
+ac_add_options --with-app-basename=Spitfire
|
|
|
|
|
2025-01-28 00:54:11 +01:00
|
|
|
// Automatically clean up the build directory if configuration changes
|
2025-01-07 01:25:05 +01:00
|
|
|
+mk_add_options AUTOCLOBBER=1
|
2025-01-28 00:54:11 +01:00
|
|
|
|
|
|
|
// Build the browser application
|
2025-01-07 01:25:05 +01:00
|
|
|
+ac_add_options --enable-application=browser
|
2025-01-28 00:54:11 +01:00
|
|
|
|
|
|
|
// Optimize for release builds (disable debug and tests)
|
|
|
|
+ac_add_options --disable-debug
|
|
|
|
+ac_add_options --disable-updater
|
|
|
|
|
|
|
|
// Disable crash reporter
|
|
|
|
+ac_add_options --disable-crashreporter
|
|
|
|
|
|
|
|
// Disable telemetry
|
|
|
|
+ac_add_options --disable-telemetry
|
|
|
|
|