cef 构建 && 编译
some url
Project Page - https://bitbucket.org/chromiumembedded/cef Tutorial - https://bitbucket.org/chromiumembedded/cef/wiki/Tutorial General Usage - https://bitbucket.org/chromiumembedded/cef/wiki/GeneralUsage Master Build Quick-Start - https://bitbucket.org/chromiumembedded/cef/wiki/MasterBuildQuickStart Branches and Building - https://bitbucket.org/chromiumembedded/cef/wiki/BranchesAndBuilding Announcements - https://groups.google.com/forum/#!forum/cef-announce Support Forum - http://www.magpcss.org/ceforum/ Issue Tracker - https://github.com/chromiumembedded/cef/issues C++ API Docs - Stable release docs / Beta release docs Downloads - https://cef-builds.spotifycdn.com/index.html Donations - http://www.magpcss.org/ceforum/donate.php
Git hub - https://github.com/chromiumembedded/cef
0x01 构建
- 从下载页下载需要的cef 版本;
- Standard Distribution: Standard binary distribution. Includes header files, libcef_dll_wrapper source code, binary files, CMake configuration files and source code for the cefclient and cefsimple sample applications. See the included README.txt file for usage and build requirements.
标准二进制分布。包括头文件、 libcef _ dll _ wrapper 源代码、二进制文件、 CMake 配置文件以及 cefclient 和 cefsimple 示例应用程序的源代码。有关使用和构建要求,请参见包含的 README.txt 文件。 - Minimal Distribution: Minimal binary distribution. Includes header files, libcef_dll_wrapper source code, Release build binary files and CMake configuration files. Does not include Debug build binary files or sample application source code. See the included README.txt file for usage and build requirements.
最小二进制分布。包括头文件,libcef _ dll _ wrapper 源代码,发布生成二进制文件和 CMake 配置文件。不包括调试生成二进制文件或示例应用程序源代码。有关使用和构建要求,请参见包含的 README.txt 文件。 - Sample Application: Release build of the cefclient sample application. See the included README.txt file for usage requirements.
Cefclient 示例应用程序的发布版本。
- Standard Distribution: Standard binary distribution. Includes header files, libcef_dll_wrapper source code, binary files, CMake configuration files and source code for the cefclient and cefsimple sample applications. See the included README.txt file for usage and build requirements.
- 安装 cmake;
- 修改构建选项(.\cmake\cef_variables.cmake)
example : option(USE_SANDBOX “Enable or disable use of the sandbox.” OFF) - 参考 .\CMakeLists.txt 进行构建
0x02 编译
- …