-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I build this again? #25
Comments
nice to see you again : ) i'll have a look at this on monday morning and get back to you! |
@anko: I get this error message if I use spotify "CEF source" instead of "Minimal Distribution" as as the readme says:
Here an example command-line that worked for me:
Note:
On Linux, you can use
and actually, you don't need "Ninja", you can just use plain old unix makefiles: Cmake on Linux is a bit of a bitch. When you run
If you get that, you need to delete the symlink to libcurl.so.4, and create a new one
You might then get
Which is to be expected, as list(FILTER) was introduced in CMake 3.6, and if you have a cmake version < 3.6, such as 3.5.1 on ubuntu 16.04, then using filter can't work. You then need to
Also, make might then treat warnings as erros. The way cmake works, is you open a command prompt in the directory where you want to build in. You then use the makefiles or the Visual Studio solution to compile the project. You also need to switch the build to "Release", because in "Debug", the build will fail because of missing CEF files. Enjoy the sources updated for the latest version of Chromium per March 11, 2019 CET here: |
I can recall having managed it in the past.
Following the current building instructions, I downloaded the correct CEF distribution files for my system,
cd
'd into a temp directory, then ran this command I constructed based on the instructions:It failed for me with this:
This is the first time I touch
cmake
, so I'm probably just dumb. What did I do wrong?Relatedly, could the build be adapted to only 1 step? It would help automate testing and packaging.
The text was updated successfully, but these errors were encountered: