Searched +full:cmake +full:- +full:3 (Results 1 – 25 of 908) sorted by relevance
12345678910>>...37
| /external/llvm/docs/ |
| D | CMakePrimer.rst | 2 CMake Primer 10 anyone affiliated with the CMake project. This document may contain 18 The LLVM project and many of the core projects built on LLVM build using CMake. 19 This document aims to provide a brief overview of CMake for developers modifying 22 The official CMake language references is available in the cmake-language 23 manpage and `cmake-language online documentation 24 <https://cmake.org/cmake/help/v3.4/manual/cmake-language.7.html>`_. 29 CMake is a tool that reads script files in its own language that describe how a 30 software project builds. As CMake evaluates the scripts it constructs an 32 fully processed, if there are no errors, CMake will generate build files to [all …]
|
| D | AdvancedBuilds.rst | 11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake 16 :doc:`CMake` pages. This page is intended for users doing more complex builds. 18 Many of the examples below are written assuming specific CMake Generators. 19 Unless otherwise explicitly called out these commands should work with any CMake 25 The Clang CMake build system supports bootstrap (aka multi-stage) builds. At a 26 high level a multi-stage build is a chain of builds that pass data from one 30 In a simple two-stage bootstrap build, we build clang using the system compiler, 31 then use that just-built clang to build clang again. In CMake this simplest form 35 .. code-block:: console 37 $ cmake -G Ninja -DCLANG_ENABLE_BOOTSTRAP=On <path to source> [all …]
|
| /external/cronet/third_party/cpu_features/src/cmake/ci/docker/amd64/ |
| D | Dockerfile | 7 RUN apt-get update -qq \ 8 && DEBIAN_FRONTEND=noninteractive apt-get install -yq git wget libssl-dev build-essential \ 9 ninja-build python3 pkgconf libglib2.0-dev \ 10 && apt-get clean \ 11 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* 12 ENTRYPOINT ["/usr/bin/bash", "-c"] 15 # Install CMake 3.21.3 16 RUN wget "https://cmake.org/files/v3.21/cmake-3.21.3-linux-x86_64.sh" \ 17 && chmod a+x cmake-3.21.3-linux-x86_64.sh \ 18 && ./cmake-3.21.3-linux-x86_64.sh --prefix=/usr/local/ --skip-license \ [all …]
|
| /external/cpu_features/cmake/ci/docker/amd64/ |
| D | Dockerfile | 7 RUN apt-get update -qq \ 8 && DEBIAN_FRONTEND=noninteractive apt-get install -yq git wget libssl-dev build-essential \ 9 ninja-build python3 pkgconf libglib2.0-dev \ 10 && apt-get clean \ 11 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* 12 ENTRYPOINT ["/usr/bin/bash", "-c"] 15 # Install CMake 3.21.3 16 RUN wget "https://cmake.org/files/v3.21/cmake-3.21.3-linux-x86_64.sh" \ 17 && chmod a+x cmake-3.21.3-linux-x86_64.sh \ 18 && ./cmake-3.21.3-linux-x86_64.sh --prefix=/usr/local/ --skip-license \ [all …]
|
| /external/libevent/ |
| D | Makefile.am | 2 # Copyright 2000-2007 Niels Provos 3 # Copyright 2007-2012 Niels Provos and Nick Mathewson 9 AUTOMAKE_OPTIONS = foreign 1.13 subdir-objects 11 ACLOCAL_AMFLAGS = -I m4 15 # "Release" are never binary-compatible. 21 RELEASE = -release 2.1 25 # Current -- the number of the binary API that we're implementing 26 # Revision -- which iteration of the implementation of the binary 28 # Age -- How many previous binary API versions do we also 34 # If the ABI changed, but it's backward-compatible: [all …]
|
| /external/libwebsockets/READMEs/ |
| D | README.build.md | 8 ./bootstrap-vcpkg.sh 14 @section cm Introduction to CMake 16 CMake is a multi-platform build tool that can generate build files for many 17 different target platforms. See more info at http://www.cmake.org 19 CMake also allows/recommends you to do "out of source"-builds, that is, 27 - Windows (Visual Studio) 28 - Windows (MinGW) 29 - Linux (x86 and ARM) 30 - OSX 31 - NetBSD [all …]
|
| /external/expat/expat/ |
| D | Makefile.am | 9 # Copyright (c) 2017-2023 Sebastian Pipping <sebastian@pipping.org> 35 dist-bzip2 \ 36 dist-lzip \ 37 dist-xz \ 39 subdir-objects 41 ACLOCAL_AMFLAGS = -I m4 42 LIBTOOLFLAGS = --verbose 60 cmake/autotools/expat.cmake 63 cmake/autotools/expat-config-version.cmake \ 64 cmake/autotools/expat-noconfig.cmake \ [all …]
|
| D | Changes | 14 !! - <blink>fixing a complex non-public security issue</blink>, !! 15 !! - teaming up on researching and fixing future security reports and !! 16 !! ClusterFuzz findings with few-days-max response times in communication !! 19 !! - implementing and auto-testing XML 1.0r5 support !! 21 !! - smart ideas on fixing the Autotools CMake files generation issue !! 23 !! - the Windows binaries topic (needs requirements engineering first), !! 24 !! - pushing migration from `int` to `size_t` further !! 25 !! including edge-cases test coverage (needs discussion before anything). !! 27 !! For details, please reach out via e-mail to sebastian@pipping.org so we !! 30 !! THANK YOU! Sebastian Pipping -- Berlin, 2024-03-09 !! [all …]
|
| /external/curl/.github/workflows/ |
| D | non-native.yml | 3 # SPDX-License-Identifier: curl 5 name: non-native 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '.azure-pipelines.yml' 15 - '.circleci/**' 16 - '.cirrus.yml' 17 - 'appveyor.*' [all …]
|
| /external/tensorflow/tensorflow/lite/g3doc/guide/ |
| D | build_cmake.md | 1 # Build TensorFlow Lite with CMake 4 [CMake](https://cmake.org/) tool. 6 The following instructions have been tested on Ubuntu 16.04.3 64-bit PC (AMD64) 12 ### Step 1. Install CMake tool 14 It requires CMake 3.16 or higher. On Ubuntu, you can simply run the following 18 sudo apt-get install cmake 22 [the official cmake installation guide](https://cmake.org/install/) 33 ### Step 3. Create CMake build directory 40 ### Step 4. Run CMake tool with configurations 48 cmake ../tensorflow_src/tensorflow/lite [all …]
|
| /external/clang/cmake/caches/ |
| D | README.txt | 1 CMake Caches 4 This directory contains CMake cache scripts that pre-populate the CMakeCache in 7 You can use the caches files with the following CMake invocation: 9 cmake -G <build system> 10 -C <path to cache file> 11 [additional CMake options (i.e. -DCMAKE_INSTALL_PREFIX=<install path>)] 18 Apple-stage1 19 ------------ 25 The Apple-stage2 cache can be used directly to match the build settings Apple 29 --- [all …]
|
| /external/mbedtls/ |
| D | CMakeLists.txt | 2 # CMake build system design considerations: 4 # - Include directories: 13 # - MBEDTLS_TARGET_PREFIX: CMake targets are designed to be alterable by calling 14 # CMake in order to avoid target name clashes, via the use of 25 # https://cmake.org/cmake/help/latest/policy/CMP0011.html 26 # Setting this policy is required in CMake >= 3.18.0, otherwise a warning is generated. The OLD 29 # https://cmake.org/cmake/help/latest/policy/CMP0012.html 30 # Setting the CMP0012 policy to NEW is required for FindPython3 to work with CMake 3.18.2 32 # for CMake versions >= 3.18.3 otherwise a deprecated warning is generated. The OLD policy setting 63 option(GEN_FILES "Generate the auto-generated files as needed" OFF) # off in development [all …]
|
| /external/cronet/third_party/cpu_features/src/cmake/ci/docker/toolchain/ |
| D | Dockerfile | 7 RUN apt-get update -qq \ 8 && DEBIAN_FRONTEND=noninteractive apt-get install -yq git wget libssl-dev build-essential \ 9 ninja-build python3 pkgconf libglib2.0-dev \ 10 && apt-get clean \ 11 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* 12 ENTRYPOINT ["/usr/bin/bash", "-c"] 15 # Install CMake 3.21.3 16 RUN wget "https://cmake.org/files/v3.21/cmake-3.21.3-linux-x86_64.sh" \ 17 && chmod a+x cmake-3.21.3-linux-x86_64.sh \ 18 && ./cmake-3.21.3-linux-x86_64.sh --prefix=/usr/local/ --skip-license \ [all …]
|
| /external/cpu_features/cmake/ci/docker/toolchain/ |
| D | Dockerfile | 7 RUN apt-get update -qq \ 8 && DEBIAN_FRONTEND=noninteractive apt-get install -yq git wget libssl-dev build-essential \ 9 ninja-build python3 pkgconf libglib2.0-dev \ 10 && apt-get clean \ 11 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* 12 ENTRYPOINT ["/usr/bin/bash", "-c"] 15 # Install CMake 3.21.3 16 RUN wget "https://cmake.org/files/v3.21/cmake-3.21.3-linux-x86_64.sh" \ 17 && chmod a+x cmake-3.21.3-linux-x86_64.sh \ 18 && ./cmake-3.21.3-linux-x86_64.sh --prefix=/usr/local/ --skip-license \ [all …]
|
| /external/libopus/cmake/ |
| D | README.md | 1 # Using CMake for the Opus Project 3 …s guide provides instructions for using CMake to build the Opus project with various configuration… 5 …CMake documentation for the most up-to-date and accurate information. You can find the official CM… 11 - CMake 12 - Git (optional, but recommended for version control integration) 13 - Working C compiler 17 Follow the steps below to build the Opus project using CMake: 33 3. Configure the build with CMake. You can set the desired configuration options using CMake's `-D`… 35 - `OPUS_BUILD_SHARED_LIBRARY`: build shared library. 36 - `OPUS_BUILD_TESTING`: build tests. [all …]
|
| /external/protobuf/cmake/ |
| D | README.md | 1 This directory contains *CMake* files that can be used to build protobuf 5 You need to have [CMake](http://www.cmake.org), [Visual Studio](https://www.visualstudio.com) 6 and optionally [Git](http://git-scm.com) installed on your computer before proceeding. 31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable: 33 C:\Path\to>set PATH=%PATH%;C:\Program Files (x86)\CMake\bin 39 Optionally, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* v… 52 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if 53 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package 55 download `protobuf-all-[VERSION].tar.gz`. 60 C:\Path\to\src> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git [all …]
|
| /external/cronet/third_party/protobuf/cmake/ |
| D | README.md | 1 This directory contains *CMake* files that can be used to build protobuf 5 You need to have [CMake](http://www.cmake.org), [Visual Studio](https://www.visualstudio.com) 6 and optionally [Git](http://git-scm.com) installed on your computer before proceeding. 31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable: 33 C:\Path\to>set PATH=%PATH%;C:\Program Files (x86)\CMake\bin 39 Optionally, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* v… 52 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if 53 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package 55 download `protobuf-all-[VERSION].tar.gz`. 60 C:\Path\to\src> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git [all …]
|
| /external/tinyxml2/.github/workflows/ |
| D | test.yml | 7 fail-fast: false 9 os: [ windows-2019, macos-latest, ubuntu-20.04 ] 10 cmake: [ 3.15, 3.x ] 12 - os: windows-2019 17 - os: ubuntu-20.04 20 - os: macos-latest 23 - cmake: 3.15 24 cmake_name: CMake 3.15 25 - cmake: 3.x 26 cmake_name: Latest CMake [all …]
|
| /external/libpcap/doc/ |
| D | README.solaris.md | 11 * CMake 3.23.1 works. 12 * GCC 11.2.0 and Clang 14.0.3 work. 17 * CMake 3.21.1 works. 21 `OI-hipster-text-20210430.iso` plus the following packages: 23 xargs -L1 pkg install <<ENDOFTEXT 27 developer/build/cmake 28 developer/gcc-10 29 developer/clang-90 35 * flex 2.6.4 and GNU Bison 3.7.3 work. 36 * CMake 3.21.0 works. [all …]
|
| /external/libaom/ |
| D | README.md | 6 1. [Building the lib and applications](#building-the-library-and-applications) 7 - [Prerequisites](#prerequisites) 8 - [Get the code](#get-the-code) 9 - [Basics](#basic-build) 10 - [Configuration options](#configuration-options) 11 - [Dylib builds](#dylib-builds) 12 - [Debugging](#debugging) 13 - [Cross compiling](#cross-compiling) 14 - [Sanitizer support](#sanitizers) 15 - [MSVC builds](#microsoft-visual-studio-builds) [all …]
|
| /external/cronet/third_party/google_benchmark/src/ |
| D | README.md | 3 …-and-test](https://github.com/google/benchmark/workflows/build-and-test/badge.svg)](https://github… 5 …k/workflows/pylint/badge.svg)](https://github.com/google/benchmark/actions?query=workflow%3Apylint) 6 …st-bindings](https://github.com/google/benchmark/workflows/test-bindings/badge.svg)](https://githu… 8 [](https://travis-ci.org/goo… 41 [Discussion group](https://groups.google.com/d/forum/benchmark-discuss) 64 See [Platform-Specific Build Instructions](docs/platform_specific_build_instructions.md). 68 This describes the installation process using cmake. As pre-requisites, you'll 69 need git and cmake installed. 80 $ cmake -E make_directory "build" 81 # Generate build system files with cmake, and download any dependencies. [all …]
|
| /external/google-benchmark/ |
| D | README.md | 3 …-and-test](https://github.com/google/benchmark/workflows/build-and-test/badge.svg)](https://github… 5 …k/workflows/pylint/badge.svg)](https://github.com/google/benchmark/actions?query=workflow%3Apylint) 6 …st-bindings](https://github.com/google/benchmark/workflows/test-bindings/badge.svg)](https://githu… 40 [Discussion group](https://groups.google.com/d/forum/benchmark-discuss) 63 See [Platform-Specific Build Instructions](docs/platform_specific_build_instructions.md). 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 ../ [all …]
|
| /external/parameter-framework/upstream/ |
| D | appveyor.yml | 1 version: 3.0.0-{build} 13 # See: https://msdn.microsoft.com/en-us/library/bb513638%28VS.85%29.aspx 14 - reg add "HKLM\SYSTEM\CurrentControlSet\Control\Windows" /f /v ErrorMode /d 2 18 # | - Check online for a solution and close the program | 19 # | - Close the program | 20 # See: https://msdn.microsoft.com/en-us/library/bb513638%28VS.85%29.aspx 21 - reg add "HKLM\Software\Microsoft\Windows\Windows Error Reporting" /f /v DontShowUI /d 1 23 # Instruct cmake were to find external dependencies 24 - set PREFIX_PATH=%APPVEYOR_BUILD_FOLDER%\asio-1.10.6;%APPVEYOR_BUILD_FOLDER%\catch 25 # Tell CMake where to install [all …]
|
| /external/cn-cbor/cmake/ |
| D | Coveralls.cmake | 32 message("Coveralls: Using alternate CMake script dir: ${_CMAKE_SCRIPT_PATH}") 34 set(_CMAKE_SCRIPT_PATH ${PROJECT_SOURCE_DIR}/cmake) 37 if (NOT EXISTS "${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake") 38 message(FATAL_ERROR "Coveralls: Missing ${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake") 41 if (NOT EXISTS "${_CMAKE_SCRIPT_PATH}/CoverallsGenerateGcov.cmake") 42 message(FATAL_ERROR "Coveralls: Missing ${_CMAKE_SCRIPT_PATH}/CoverallsGenerateGcov.cmake") 45 # When passing a CMake list to an external process, the list 46 # will be converted from the format "1;2;3" to "1 2 3". 51 …# http://cmake.3232098.n2.nabble.com/Passing-a-CMake-list-quot-as-is-quot-to-a-custom-target-td650… 65 -P "${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake" [all …]
|
| /external/protobuf/ |
| D | CMakeLists.txt | 1 # Minimum CMake required 8 # CMake policies 37 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") 49 string(APPEND CMAKE_CXX_FLAGS " -diag-disable=2196") 78 include(${protobuf_SOURCE_DIR}/cmake/protobuf-options.cmake) 99 string(REGEX REPLACE "${protobuf_AC_INIT_REGEX}" "\\3" 102 set(protobuf_VERSION_REGEX "^([0-9]+)\\.([0-9]+)\\.([0-9]+)([-]rc[-]|\\.)?([0-9]*)$") 107 string(REGEX REPLACE "${protobuf_VERSION_REGEX}" "\\3" 133 add_definitions(-DGOOGLE_PROTOBUF_CMAKE_BUILD) 136 add_definitions(-DGOOGLE_PROTOBUF_NO_RTTI=1) [all …]
|
12345678910>>...37