Home
last modified time | relevance | path

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

12345678910>>...16

/third_party/libwebsockets/READMEs/
DREADME.build.md8 ./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 …]
DREADME.build-windows.md4 in March - April 2020. Doing this on a linux distro is way simpler and quicker
26 https://www.spice-space.org/download/windows/spice-guest-tools/spice-guest-tools-latest.exe
28 ### Blood-pressure reduction: Firefox
30 https://www.mozilla.org/en-US/exp/firefox/
32 When it's up, add-ons: ublock origin, privacy badger, noscript, disable search
35 ### Blood-pressure reduction: Clink
37 This is a hack on cmd.exe that lets it understand Ctrl-R and fixup unix-style
44 ### Required: cmake
46 CMake have a windows installer thing downloadable from here
48 [cmake](https://cmake.org/download/)
[all …]
/third_party/skia/third_party/externals/expat/expat/
DMakefile.am9 # Copyright (c) 2017-2021 Sebastian Pipping <sebastian@pipping.org>
33 dist-bzip2 \
34 dist-lzip \
35 dist-xz \
37 subdir-objects
39 ACLOCAL_AMFLAGS = -I m4
40 LIBTOOLFLAGS = --verbose
58 cmake/autotools/expat.cmake
61 cmake/autotools/expat-config-version.cmake \
62 cmake/autotools/expat-noconfig.cmake \
[all …]
DChanges7 #616 #649 #650 CVE-2022-43680 -- Fix heap use-after-free after overeager
9 XML_ExternalEntityParserCreate in out-of-memory situations
13 #629 #640 CVE-2022-40674 -- Heap use-after-free vulnerability in
31 #34 #466 #484 CVE-2013-0340/CWE-776 -- Protect against billion laughs attacks
32 (denial-of-service; flavors targeting CPU time or RAM or both,
40 - A new error code XML_ERROR_AMPLIFICATION_LIMIT_BREACH to
42 - Two new API functions ..
43 - XML_SetBillionLaughsAttackProtectionMaximumAmplification and
44 - XML_SetBillionLaughsAttackProtectionActivationThreshold
47 If you ever need to increase the defaults for non-attack XML
[all …]
/third_party/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 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if
49 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package
51 download `protobuf-all-[VERSION].tar.gz`.
55 C:\Path\to> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git
57 Where *[release_tag]* is a git tag like *v3.0.0-beta-1* or a branch name like *master*
[all …]
DCMakeLists.txt1 # Minimum CMake required
2 cmake_minimum_required(VERSION 3.1.3)
8 # CMake policies
24 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
36 string(APPEND CMAKE_CXX_FLAGS " -diag-disable=2196")
62 include(protobuf-options.cmake)
85 string(REGEX REPLACE "${protobuf_AC_INIT_REGEX}" "\\3"
88 set(protobuf_VERSION_REGEX "^([0-9]+)\\.([0-9]+)\\.([0-9]+)([-]rc[-]|\\.)?([0-9]*)$")
93 string(REGEX REPLACE "${protobuf_VERSION_REGEX}" "\\3"
119 add_definitions(-DGOOGLE_PROTOBUF_CMAKE_BUILD)
[all …]
/third_party/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 …]
/third_party/mbedtls/
DCMakeLists.txt2 # 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
60 option(GEN_FILES "Generate the auto-generated files as needed" OFF)
[all …]
/third_party/skia/third_party/externals/sfntly/doc/
Dbuild_cpp.md5 * cmake 2.6 or above
9 g++ must support built-in atomic ops and has companion libstd++.
27 …For example, you can run `sudo apt-get install libicu-dev` in Ubuntu and see if the required libra…
29 …For Windows, download from http://site.icu-project.org/download or extract the one from `ext/redis…
35 For Mac users, please download ICU source tarball from http://site.icu-project.org/download
46 1. If you don't have cmake installed, extract the cmake-XXX.zip
47 into `d:\src\sfntly\cpp\ext\cmake` removing the "-XXX" part.
48 The extracted binary should be in `d:\src\sfntly\cpp\ext\cmake\bin\cmake.exe`.
49 2. Extract gtest-XXX.zip into `d:\src\sfntly\cpp\ext\gtest`
50 removing the "-XXX" part.
[all …]
/third_party/benchmark/
DREADME.md3-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 [![Build Status](https://travis-ci.org/google/benchmark.svg?branch=master)](https://travis-ci.org/g…
41 [Discussion group](https://groups.google.com/d/forum/benchmark-discuss)
62 See [Platform-Specific Build Instructions](docs/platform_specific_build_instructions.md).
66 This describes the installation process using cmake. As pre-requisites, you'll
67 need git and cmake installed.
78 $ cmake -E make_directory "build"
79 # Generate build system files with cmake, and download any dependencies.
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/kokoro/gcp_windows/
Dcontinuous.bat5 SET PATH=C:\python36;C:\Program Files\cmake\bin;%PATH%
15 REM The currently used OS image comes with CMake 3.17.3. If a newer version is
18 REM choco upgrade cmake -y --limit-output --no-progress
19 cmake --version
21 cmake .. ^
22 -G "%CMAKE_GENERATOR_TYPE%" ^
23 -Thost=x64 ^
24 "-DREACTOR_BACKEND=%REACTOR_BACKEND%" ^
25 "-DSWIFTSHADER_LLVM_VERSION=%LLVM_VERSION%" ^
26 "-DREACTOR_VERIFY_LLVM_IR=1" ^
[all …]
/third_party/curl/
DRELEASE-NOTES20 o autotools: adjust `CURL_CA_PATH` value to CMake [53]
26 o cf-socket: simulate slow/blocked receives in debug [120]
27 o cmake, configure: also link with CoreServices [32]
28 o cmake: add check for suseconds_t [91]
29 o cmake: add feature checks for `memrchr` and `getifaddrs` [57]
30 o cmake: add missing checks [86]
31 o cmake: delete old `HAVE_LDAP_URL_PARSE` logic [105]
32 o cmake: detect `HAVE_CLOCK_GETTIME_MONOTONIC_RAW` [75]
33 o cmake: detect `HAVE_GETADDRINFO_THREADSAFE` [76]
34 o cmake: detect `sys/wait.h` and `netinet/udp.h` [61]
[all …]
/third_party/musl/ndk-test/
DREADME.en.md3 - [Introduction]
4 - [Directory]
5 - [Constraints and Limitations]
6 - [illustrate]
7 - [Description of related issues]
11 Provides a framework based on cmake compilation, which can compile binary files for different platf…
15 1. Use python script to configure the parameters of cmake compilation
17 3. Execute the compiled task by running cmake --build .
25 ├── ndk-test
26 │   ├── CMakeLists.txt # Starting point for ndk-test build via cmake
[all …]
/third_party/libsnd/
DREADME.md11 Erik de Castro Lopo <erikd@mega-nerd.com> aka @erikd. The project was developed
30 modern CMake based build system. Use of the CMake build system is documented
35 sudo apt install autoconf autogen automake build-essential libasound2-dev \
36 libflac-dev libogg-dev libtool libvorbis-dev libopus-dev libmp3lame-dev \
37 libmpg123-dev pkg-config python
44 brew install autoconf autogen automake flac libogg libtool libvorbis opus mpg123 pkg-config
49 autoreconf -vif
50 ./configure --enable-werror
54 ## The CMake build system
56 Although Autotools is the primary and recommended build toolchain, CMake meta
[all …]
/third_party/nghttp2/.github/workflows/
Dbuild.yml5 permissions: read-all
16 build-cache:
19 os: [ubuntu-22.04, macos-12]
21 runs-on: ${{ matrix.os }}
24 - uses: actions/checkout@v3
25 - name: Restore libbpf cache
26 id: cache-libbpf
31 key: ${{ runner.os }}-libbpf-${{ env.LIBBPF_VERSION }}
32 - name: Restore OpenSSL v1.1.1 cache
33 id: cache-openssl1
[all …]
/third_party/json/docs/mkdocs/docs/integration/
Dpackage_managers.md6 --8<-- "integration/example.cpp"
12 --8<-- "../../examples/meta.output"
20 brew install nlohmann-json
26 brew install nlohmann-json --HEAD
29 instead. See [nlohmann-json](https://formulae.brew.sh/formula/nlohmann-json) for more information.
36 --8<-- "integration/example.cpp"
42 brew install nlohmann-json
453. Determine the include path, which defaults to `/usr/local/Cellar/nlohmann-json/$version/include…
48 brew list nlohmann-json
54 clang++ example.cpp -I/usr/local/Cellar/nlohmann-json/3.7.3/include -std=c++11 -o example
[all …]
/third_party/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" ] || {
72 # Update cmake files.
75 CMAKE_DIR=cmake
76 EXTRACT_INCLUDES_BAT=cmake/extract_includes.bat.in
77 [ -d "$CMAKE_DIR" ] || {
82 [ -f "$EXTRACT_INCLUDES_BAT" ] || {
90 local PREFIX=$3
[all …]
/third_party/pcre2/pcre2/
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. Note that the settings concerned with
[all …]
DMakefile.am3 AUTOMAKE_OPTIONS = subdir-objects
4 ACLOCAL_AMFLAGS = -I m4
6 ## This seems to have become necessary for building in non-source directory.
8 AM_CPPFLAGS="-I$(srcdir)/src"
20 doc/pcre2-config.txt \
25 doc/html/NON-AUTOTOOLS-BUILD.txt \
28 doc/html/pcre2-config.html \
124 doc/pcre2-config.1 \
125 doc/pcre2.3 \
126 doc/pcre2_callout_enumerate.3 \
[all …]
/third_party/pcre2/pcre2/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. Note that the settings concerned with
[all …]
/third_party/skia/third_party/externals/swiftshader/docs/
DdEQP.md7 -------------
9 1. Install the latest [Python 3](https://www.python.org/downloads/)
11 3. Install [CMake](https://cmake.org/download/)
13 5. Install [MinGW-W64](http://mingw-w64.org/doku.php/download)
15 6. Install [Git](https://git-scm.com/download/win)
18 9. Set environment variables: Config Panel -> System and Security -> System -> Advanced system sett…
20 * Add `<path to MinGW-W64>\bin` to your PATH environment variable
23 … is in the Android SDK, typically in `C:\Users\<username>\AppData\Local\Android\sdk\platform-tools`
28 ----------------
32 `git clone https://github.com/KhronosGroup/VK-GL-CTS`
[all …]
/third_party/glslang/
DREADME.md5 …roup/glslang/blob/9eef54b2513ca6b40b47b07d24f453848b65c0df/README.md#planned-deprecationsremovals),
11 3. If you get a new **compilation error due to a missing header**, it might be caused by this plann…
13 **SPIRV Folder, 1-May, 2020.** Glslang, when installed through CMake,
17 The old install of `SPIRV/` will be removed as a CMake install target no sooner than May 1, 2020.
20 …get spirv.hpp, I recommend they get that from [SPIRV-Headers](https://github.com/KhronosGroup/SPIR…
22 [![Build Status](https://travis-ci.org/KhronosGroup/glslang.svg?branch=master)](https://travis-ci.o…
29 ### Reference Validator and GLSL/ESSL -> AST Front End
31 An OpenGL GLSL and OpenGL|ES GLSL (ESSL) front-end for reference validation and translation of GLSL…
35 ### HLSL -> AST Front End
37 An HLSL front-end for translation of an approximation of HLSL to glslang's AST form.
[all …]
/third_party/icu/vendor/double-conversion/upstream/
DCMakeLists.txt2 project(double-conversion VERSION 3.2.0)
11 double-conversion/bignum.h
12 double-conversion/cached-powers.h
13 double-conversion/diy-fp.h
14 double-conversion/double-conversion.h
15 double-conversion/double-to-string.h
16 double-conversion/fast-dtoa.h
17 double-conversion/fixed-dtoa.h
18 double-conversion/ieee.h
19 double-conversion/string-to-double.h
[all …]
/third_party/skia/third_party/externals/abseil-cpp/CMake/
DREADME.md1 # Abseil CMake Build Instructions
3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt))
4 that can be used on a wide range of platforms ("C" stands for cross-platform.).
5 If you don't have CMake installed already, you can download it for free from
6 <https://www.cmake.org/>.
8 CMake works by generating native makefiles or build projects that can
14 ## Incorporating Abseil Into a CMake Project
16 The recommendations below are similar to those for using CMake within the
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
20 ### Step-by-Step Instructions
[all …]
/third_party/vk-gl-cts/external/openglcts/
DREADME.md1 OpenGL and OpenGL ES 2.0/3.X Conformance Test Instructions
5 2.0/3.X conformance tests, and how to verify and submit test results.
12 ------------------------
13 - [Test History](#test-history)
14 - [Introduction](#introduction)
15 - [Test Environment Requirements](#test-environment-requirements)
16 - [Configuring and Building the Tests](#configuring-and-building-the-tests)
17 - [Configuration](#configuration)
18 - [Building the Tests](#building-the-tests)
19 - [Windows](#windows)
[all …]

12345678910>>...16