#cef #export #power-shell #linux #export-cef-dir #cef-path

app export-cef-dir

Export pre-built CEF (Chromium Embedded Framework) archives

4 stable releases

134.3.1 Mar 13, 2025
133.4.3 Feb 23, 2025
132.3.2 Feb 7, 2025
132.3.1 Feb 2, 2025

#121 in Compression

Download history 233/week @ 2025-02-02 39/week @ 2025-02-09 16/week @ 2025-02-16 140/week @ 2025-02-23 26/week @ 2025-03-02 113/week @ 2025-03-09 32/week @ 2025-03-16

145 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

~19–30MB
~545K SLoC