#export #directory #archive #cef #chromium #framework #pre-built

app export-cef-dir

Export pre-built CEF (Chromium Embedded Framework) archives

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

Download history 104/week @ 2025-01-30 146/week @ 2025-02-06 35/week @ 2025-02-13 128/week @ 2025-02-20 41/week @ 2025-02-27

355 downloads per month

Apache-2.0 OR MIT

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