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

app export-cef-dir

Export pre-built CEF (Chromium Embedded Framework) archives

5 releases (3 major breaking)

new 135.0.20 Apr 19, 2025
134.3.1 Mar 13, 2025
133.4.3 Feb 23, 2025
132.3.2 Feb 7, 2025
132.3.1 Feb 2, 2025

#122 in Compression

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
~552K SLoC