mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-07-08 18:06:30 +00:00
- Added no_dvb_dedup field to ccx_s_options structure - Initialized to 0 (deduplication enabled by default) - Added --no-dvb-dedup CLI flag in Rust args parser - Added flag to Options struct in lib_ccxr - Wired flag through Rust-to-C FFI boundary in common.rs - Modified dvbsub_handle_display_segment to respect flag - Dedup logic only runs when no_dvb_dedup is false (default) - Added help text describing flag purpose
6 lines
102 B
Bash
6 lines
102 B
Bash
#!/bin/bash
|
|
mkdir -p build_cmake
|
|
cd build_cmake
|
|
cmake ../src -DCMAKE_BUILD_TYPE=Debug
|
|
make -j$(nproc)
|