Lines Matching full:cmake
67 This describes the installation process using cmake. As pre-requisites, you'll
68 need git and cmake installed.
79 $ cmake -E make_directory "build"
80 # Generate build system files with cmake, and download any dependencies.
81 $ cmake -E chdir "build" cmake -DBENCHMARK_DOWNLOAD_DEPENDENCIES=on -DCMAKE_BUILD_TYPE=Release ../
82 # or, starting with CMake 3.13, use a simpler form:
83 # cmake -DCMAKE_BUILD_TYPE=Release -S . -B "build"
85 $ cmake --build "build" --config Release
103 $ cmake -E chdir "build" ctest --build-config Release
109 sudo cmake --build "build" --config Release --target install
135 If you are using gcc, you might need to set `GCC_AR` and `GCC_RANLIB` cmake
139 `LLVMNM_EXECUTABLE` and `LLVMRANLIB_EXECUTABLE` cmake cache variables.
205 ### Usage with CMake
207 If using CMake, it is recommended to link against the project-provided
212 ```cmake
216 to one's CMake project.
217 ```cmake
221 ```cmake