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

app export-cef-dir

Export pre-built CEF (Chromium Embedded Framework) archives

99 stable releases (13 major)

new 146.7.0+146.0.12 Apr 20, 2026
146.2.0+146.0.9 Mar 31, 2026
145.6.1+145.0.28 Mar 8, 2026
144.4.0+144.0.13 Feb 6, 2026
132.3.2 Feb 7, 2025

#386 in Embedded development

38 downloads per month

Apache-2.0 OR MIT

36KB
693 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–35MB
~597K SLoC