xberg-libwpd 1.2.2

WordPerfect (.wpd) text extraction for Xberg via libwpd + librevenge, built from vendored source (MPL-2.0 arm)
Documentation
1
2
3
4
5
6
7
8
9
pub const MSVC_ONLY_FLAGS: &[&str] = &["/FImsvc_compat.h", "/EHsc"];

pub fn msvc_only_flags(target_os: &str, target_env: &str) -> &'static [&'static str] {
    if target_os == "windows" && target_env == "msvc" {
        MSVC_ONLY_FLAGS
    } else {
        &[]
    }
}