Home
last modified time | relevance | path

Searched +full:cmake +full:- +full:3 (Results 1 – 25 of 344) sorted by relevance

12345678910>>...14

/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCMakePrimer.rst2 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 …]
DAdvancedBuilds.rst11 `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 …]
DGettingStartedVS.rst41 --------
44 approximately 3GB.
47 --------
50 You will also need the `CMake <http://www.cmake.org/>`_ build system since it
67 3. Remember that you were warned twice about reading the documentation.
72 1. ``cd <where-you-want-llvm-to-live>``
73 2. ``gunzip --stdout llvm-VERSION.tar.gz | tar -xvf -``
75 3. ``cd llvm``
79 *Note:* some regression tests require Unix-style line ending (``\n``). To
80 pass all regression tests, please add two lines *enable-auto-props = yes*
[all …]
/external/llvm/docs/
DCMakePrimer.rst2 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 …]
DAdvancedBuilds.rst11 `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 …]
DGettingStartedVS.rst41 --------
44 approximately 3GB.
47 --------
50 You will also need the `CMake <http://www.cmake.org/>`_ build system since it
51 generates the project files you will use to build with. CMake 2.8.12.2 is the
53 version of CMake is recommended.
69 3. Remember that you were warned twice about reading the documentation.
74 1. ``cd <where-you-want-llvm-to-live>``
75 2. ``gunzip --stdout llvm-VERSION.tar.gz | tar -xvf -``
77 3. ``cd llvm``
[all …]
/external/Reactive-Extensions/RxCpp/projects/scripts/
Dtravis-install.sh3 set -e
8 if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then
10 wget http://www.cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
11 chmod a+x cmake-3.2.3-Linux-x86_64.sh
12 sudo ./cmake-3.2.3-Linux-x86_64.sh --skip-license --prefix=/usr/local
15 cmake --version
19 xcode-select --install
22 brew list cmake || echo "suppress failures in order to ignore warnings"
23 sudo brew uninstall --force cmake || "suppress failures in order to ignore warnings"
24 brew search cmake || echo "suppress failures in order to ignore warnings"
[all …]
/external/clang/cmake/caches/
DREADME.txt1 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/protobuf/cmake/
DREADME.md1 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
48 C:\Path\to> git clone -b [release_tag] https://github.com/google/protobuf.git
50 Where *[release_tag]* is a git tag like *v3.0.0-beta-1* or a branch name like *master*
58 Protobuf unit-tests require gmock to build. If you download protobuf source code
61 download it manually or skip building protobuf unit-tests.
65 C:\Path\to\protobuf>git clone -b release-1.7.0 https://github.com/google/googlemock.git gmock
[all …]
DCMakeLists.txt1 # Minimum CMake required
7 # CMake policies
44 string(REGEX REPLACE "${protobuf_AC_INIT_REGEX}" "\\3"
47 set(protobuf_VERSION_REGEX "^([0-9]+)\\.([0-9]+)\\.([0-9]+).*$")
52 string(REGEX REPLACE "${protobuf_VERSION_REGEX}" "\\3"
66 add_definitions(-DGOOGLE_PROTOBUF_CMAKE_BUILD)
70 add_definitions(-DHAVE_PTHREAD)
86 # Explicitly set these to empty (override NOT_FOUND) so cmake doesn't
94 add_definitions(-DHAVE_ZLIB)
103 # https://msdn.microsoft.com/en-us/library/2kzt1wy3.aspx
[all …]
/external/curl/docs/
DINSTALL.cmake7 How To Compile with CMake
9 Building with CMake
12 from source code using the CMake build tool. To build with CMake, you will
13 of course have to first install CMake. The minimum required version of
14 CMake is specified in the file CMakeLists.txt found in the top of the curl
15 source tree. Once the correct version of CMake is installed you can follow
18 CMake builds can be configured either from the command line, or from one
19 of CMake's GUI's.
21 Current flaws in the curl CMake build
24 Missing features in the cmake build:
[all …]
/external/libaom/libaom/
DREADME.md4 1. [Building the lib and applications](#building-the-library-and-applications)
5 - [Prerequisites](#prerequisites)
6 - [Get the code](#get-the-code)
7 - [Basics](#basic-build)
8 - [Configuration options](#configuration-options)
9 - [Dylib builds](#dylib-builds)
10 - [Debugging](#debugging)
11 - [Cross compiling](#cross-compiling)
12 - [Sanitizer support](#sanitizers)
13 - [MSVC builds](#microsoft-visual-studio-builds)
[all …]
/external/tensorflow/tensorflow/contrib/cmake/
DREADME.md1 TensorFlow CMake build
4 CMAKE build is deprecated for TensorFlow. Please use `bazel` to build TF for all
8 This directory contains CMake files for building TensorFlow on Microsoft Windows
9 and Linux. [CMake](https://cmake.org) is a cross-platform tool that can generate
14 testing the build. We recommend using the standard Bazel-based build on
18 --------------
20 CMake can be used to build TensorFlow on all platforms. See the
22 for instructions on how to install a pre-built TensorFlow package on Windows and
32 ## Building with CMake
34 The CMake files in this directory can build the core TensorFlow runtime, an
[all …]
/external/flatbuffers/android/jni/
Dinclude.mk7 # http://www.apache.org/licenses/LICENSE-2.0
22 # import-module function.
41 realpath-portable = $(join $(filter %:,$(subst :,: ,$1)),\
42 $(realpath $(filter-out %:,$(subst :,: ,$1))))
46 PROJECT_OS := $(shell uname -s)
57 $(call realpath-portable,$(dir $(lastword $(MAKEFILE_LIST)))/../..)
79 # Search for cmake.
81 $(call realpath-portable,$(LOCAL_PATH)/../../../../../../prebuilts/cmake)
82 ifeq (,$(CMAKE))
84 CMAKE := $(wildcard $(CMAKE_ROOT)/linux-x86/current/bin/cmake*)
[all …]
/external/parameter-framework/upstream/
Dappveyor.yml1 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 …]
DREADME.md1 # parameter-framework
3 …![Build Status](https://travis-ci.org/01org/parameter-framework.svg?branch=master)](https://travis
4 …8tet0qimbu/branch/master)](https://ci.appveyor.com/project/parameter-framework/parameter-framework)
5 …//codecov.io/github/01org/parameter-framework/coverage.svg?branch=master)](https://codecov.io/gith…
9 The parameter-framework is a plugin-based and rule-based framework for handling
12 1. Describe your system's structure and its parameters (in XML) - aka. **What**;
14 that you just described - aka. **How**;
15 3. Define (in XML or in a domain-specific-language) conditions/rules upon which
16 a given parameter must take a given value - aka. **When**.
18 ![What, How, When](https://01org.github.io/parameter-framework/hosting/what-how-when.png)
[all …]
/external/cn-cbor/cmake/
DCoveralls.cmake32 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/expat/
DChanges8 #204 #205 Fix 2.2.5 regression with suspend-resume while parsing
12 #165 #168 Autotools: Fix docbook-related configure syntax error
13 #166 Autotools: Avoid grep option `-q` for Solaris
15 ./configure DOCBOOK_TO_MAN="xmlto man --skip-validation"
19 #181 Autotools: Drop -rpath option passed to libtool
21 #188 Autotools/CMake: Support command db2x_docbook2man as well
22 #174 CMake: Introduce option WARNINGS_AS_ERRORS, defaults to OFF
23 #184 #185 CMake: Introduce option MSVC_USE_STATIC_CRT, defaults to OFF
24 #207 #208 CMake: Introduce option XML_UNICODE and XML_UNICODE_WCHAR_T,
26 #175 CMake: Prefer check_symbol_exists over check_function_exists
[all …]
/external/protobuf/
Dupdate_file_lists.sh3 # This script copies source file lists from src/Makefile.am to cmake files.
17 | grep -v "^\\$" \
18 | grep -v "^$" \
46 [ -f "$MAKEFILE" ] || {
70 # Update cmake files.
73 CMAKE_DIR=cmake
74 EXTRACT_INCLUDES_BAT=cmake/extract_includes.bat.in
75 [ -d "$CMAKE_DIR" ] || {
80 [ -f "$EXTRACT_INCLUDES_BAT" ] || {
88 local PREFIX=$3
[all …]
/external/grpc-grpc-java/buildscripts/
Dmake_dependencies.bat2 set CMAKE_NAME=cmake-3.3.2-win32-x86
4 if not exist "protobuf-%PROTOBUF_VER%\cmake\build\Release\" (
8 echo Compile gRPC-Java with something like:
9 echo -PtargetArch=x86_32 -PvcProtobufLibs=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\Release -PvcProt…
15 where /q cmake
23-command "$ErrorActionPreference = 'stop'; & { [Net.ServicePointManager]::SecurityProtocol = [Net.…
24 powershell -command "$ErrorActionPreference = 'stop'; & { Add-Type -AssemblyName System.IO.Compress…
26 pushd protobuf-%PROTOBUF_VER%\cmake
30 @rem cmake does not detect x86_64 from the vcvars64.bat variables.
31 @rem If vcvars64.bat has set PLATFORM to X64, then inform cmake to use the Win64 version of VS
[all …]
/external/pcre/dist2/doc/html/
DNON-AUTOTOOLS-BUILD.txt2 --------------------------------------
12 Building PCRE2 on Windows with CMake
25 configure/make (autotools) build system, as found in many Unix-like
29 There is also support for CMake, which some users prefer, especially in Windows
30 environments, though it can also be run in Unix-like environments. See the
31 section entitled "Building PCRE2 on Windows with CMake" below.
35 provided for those who build PCRE2 without using "configure" or CMake. If you
36 use "configure" or CMake, the .generic versions are not used.
42 hand". If you are going to use CMake, this section does not apply to you; you
43 can skip ahead to the CMake section.
[all …]
/external/pcre/dist2/
DNON-AUTOTOOLS-BUILD2 --------------------------------------
12 Building PCRE2 on Windows with CMake
25 configure/make (autotools) build system, as found in many Unix-like
29 There is also support for CMake, which some users prefer, especially in Windows
30 environments, though it can also be run in Unix-like environments. See the
31 section entitled "Building PCRE2 on Windows with CMake" below.
35 provided for those who build PCRE2 without using "configure" or CMake. If you
36 use "configure" or CMake, the .generic versions are not used.
42 hand". If you are going to use CMake, this section does not apply to you; you
43 can skip ahead to the CMake section.
[all …]
/external/parameter-framework/upstream/cmake/
DFindLibXml2.cmake14 # 3. Neither the name of the copyright holder nor the names of its contributors
29 # Wrapper around the official FindLibXml2.cmake in order to provide imported targets.
31 # See: https://cmake.org/cmake/help/git-master/manual/cmake-developer.7.html#find-modules
32 # See: https://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/FindGLUT.cmake
33 # for a modern Find<package>.cmake example
34 # TODO: make a real FindLibXml2.cmake in order to upstream it.
36 # More info on how to write Find*.cmake on:
37 # https://cmake.org/cmake/help/git-master/manual/cmake-developer.7.html#find-modules
39 # Remove this directory from CMAKE_MODULE_PATH for the call to the original FindLibXml2.cmake
/external/llvm/
DCMakeLists.txt1 # See docs/CMake.html for instructions about how to build LLVM with CMake.
3 cmake_minimum_required(VERSION 3.4.3)
15 # CMake 3.1 and higher include generator expressions of the form
24 set(LLVM_VERSION_MAJOR 3)
59 message(STATUS "Found libtool - ${CMAKE_LIBTOOL}")
63 "${CMAKE_LIBTOOL} -static -o <TARGET> <LINK_FLAGS> <OBJECTS> ")
68 # The following only works with the Ninja generator in CMake >= 3.0.
82 add_definitions(-DLLVM_BUILD_GLOBAL_ISEL)
99 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
100 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
[all …]
/external/eigen/cmake/
Dlanguage_support.cmake1 # cmake/modules/language_support.cmake
7 # CMake bug 9220.
9 # On debian testing (cmake 2.6.2), I get return code zero when calling
10 # cmake the first time, but cmake crashes when running a second time
13 # -- The Fortran compiler identification is unknown
14 # CMake Error at /usr/share/cmake-2.6/Modules/CMakeFortranInformation.cmake:7 (GET_FILENAME_COMPON…
17 # CMakeLists.txt:3 (enable_language)
19 # My workaround is to invoke cmake twice. If both return codes are zero,
36 COMMAND ${CMAKE_COMMAND} . -G "${CMAKE_GENERATOR}"
46 COMMAND ${CMAKE_COMMAND} . -G "${CMAKE_GENERATOR}"

12345678910>>...14