• Home
  • Raw
  • Download

Lines Matching full:cmake

7 # CMake is a cross-platform open-source build system that can generate project
9 # http://www.cmake.org or installed via a platform package manager.
11 # CMake-generated project formats that have been tested with this CEF binary
23 # CMAKE STRUCTURE
25 # This CEF binary distribution includes the following CMake files:
27 # CMakeLists.txt Bootstrap that sets up the CMake environment.
28 # cmake/*.cmake CEF configuration files shared by all targets.
33 # binary distribution into a new or existing CMake project.
39 # - CMake version 3.19 or newer.
64 # CEF targets using CMake and the platform toolchain.
66 # Start by creating and entering the CMake build output directory:
73 # > cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
77 # > cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Debug ..
82 # > cmake -G "Xcode" -DPROJECT_ARCH="x86_64" ..
86 # > cmake -G "Ninja" -DPROJECT_ARCH="x86_64" -DCMAKE_BUILD_TYPE=Debug ..
91 # > cmake -G "Xcode" -DPROJECT_ARCH="arm64" ..
95 # > cmake -G "Ninja" -DPROJECT_ARCH="arm64" -DCMAKE_BUILD_TYPE=Debug ..
100 # > cmake -G "Visual Studio 16" -A Win32 ..
106 # > cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Debug ..
111 # > cmake -G "Visual Studio 16" -A x64 ..
117 # > cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Debug ..
122 # > cmake -G "Visual Studio 16" -A arm64 ..
128 # > cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Debug ..
160 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CEF_ROOT}/cmake")
163 # project. Locate the binary distribution using the CEF_ROOT CMake
167 # CMakeLists.txt <= top-level CMake configuration
169 # CMakeLists.txt <= CMake configuration for `mytarget`
171 # B. Copy this file to "myproject/CMakeLists.txt" as the top-level CMake
179 # set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CEF_ROOT}/cmake")
186 # CMakeLists.txt <= top-level CMake configuration
187 # cmake/
188 # FindCEF.cmake <= CEF CMake configuration entry point
190 # CMakeLists.txt <= CMake configuration for `mytarget`
192 # B. Copy this file to "myproject/CMakeLists.txt" as the top-level CMake
194 # C. Copy the cmake/FindCEF.cmake file to "myproject/cmake/FindCEF.cmake".
198 # E. Set the CEF_ROOT environment variable before executing CMake. For example:
202 # set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
209 # Execute FindCEF.cmake which must exist in CMAKE_MODULE_PATH.