Hello,
By default CEF4Delphi looks for CEF DLLs on the same path the application EXE is running.
Is there a way to define another path for the CEF DLLs ?
Thanks
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
Path to CEF library
- salvadordf
- Posts: 4565
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Path to CEF library
Set this properties before the GlobalCEFApp.StartMainProcess call :
Replace "c:\cef" with your directory with the CEF binaries.
Code: Select all
GlobalCEFApp.FrameworkDirPath := 'c:\cef';
GlobalCEFApp.ResourcesDirPath := 'c:\cef';
GlobalCEFApp.LocalesDirPath := 'c:\cef\locales';