4 stable releases
new 134.3.1 | Mar 13, 2025 |
---|---|
133.4.3 | Feb 23, 2025 |
132.3.2 | Feb 7, 2025 |
132.3.1 | Feb 2, 2025 |
#75 in Compression
355 downloads per month
26KB
428 lines
export-cef-dir
Export files from the prebuilt Chromium Embedded Framework
archive on any supported platform. The structure of the exported directory matches the way that
the cef-dll-sys
crate expects to see them.
To use the target directory when building, set the CEF_PATH
environment variable to the path of the
exported directory, e.g., ~/.local/share/cef
.
To use the DLLs in this directory at runtime, the library loader path varies by platform:
- Linux
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$CEF_PATH"
- macOS
export DYLD_FALLBACK_LIBRARY_PATH="$DYLD_FALLBACK_LIBRARY_PATH:$CEF_PATH"
- Windows (using PowerShell)
$env:PATH = "$env:PATH;$env:CEF_PATH"
Dependencies
~18–29MB
~545K SLoC