a774c61e5a
- Added an `interrupts` module to manage Ctrl-C signals and propagate them to child processes. - Refactored archive extraction functions to check for interrupts and handle them gracefully. - Introduced `copy_interruptibly` function to allow for interruptible copying of data. - Updated various source files to utilize the new interrupt handling functions, ensuring that commands and archive extractions can be interrupted by the user. - Added tests to verify the interrupt functionality during copying and tar extraction. - Introduced a new Meson option for generating HTML CLI documentation. - Enhanced the `PackageSpec` struct to support additional Rust LTO flags.
7 lines
143 B
Meson
7 lines
143 B
Meson
option(
|
|
'build-html-doc',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Generate HTML CLI documentation with cli_doc and install it',
|
|
)
|