#[cfg(target_os = "windows")]
pub const SOX_NG: &str = "sox_ng.exe";
#[cfg(not(target_os = "windows"))]
pub const SOX_NG: &str = "sox_ng";
#[cfg(target_os = "windows")]
pub const SOX: &str = "sox.exe";
#[cfg(not(target_os = "windows"))]
pub const SOX: &str = "sox";
#[cfg(target_os = "windows")]
pub const LAME: &str = "lame.exe";
#[cfg(not(target_os = "windows"))]
pub const LAME: &str = "lame";
#[cfg(target_os = "windows")]
pub const FLAC: &str = "flac.exe";
#[cfg(not(target_os = "windows"))]
pub const FLAC: &str = "flac";
#[cfg(all(test, target_os = "windows"))]
pub const METAFLAC: &str = "metaflac.exe";
#[cfg(all(test, not(target_os = "windows")))]
pub const METAFLAC: &str = "metaflac";