Searched +full:cmake +full:- +full:3 (Results 1 – 25 of 497) sorted by relevance
12345678910>>...20
| /third_party/skia/m133/third_party/externals/expat/expat/ |
| D | CMake.README | 1 == How to build expat with cmake (experimental) == 3 The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual 4 Studio) and should work on all other platform cmake supports. 6 Assuming ~/expat-2.6.3 is the source directory of expat, add a subdirectory 8 ~/expat-2.6.3$ mkdir build && cd build 9 ~/expat-2.6.3/build$ 11 From that directory, call cmake first, then call make, make test and 13 ~/expat-2.6.3/build$ cmake .. 14 -- The C compiler identification is GNU 15 -- The CXX compiler identification is GNU [all …]
|
| D | Makefile.am | 9 # Copyright (c) 2017-2023 Sebastian Pipping <sebastian@pipping.org> 14 # Copyright (c) 2024 Dag-Erling Smørgrav <des@des.dev> 37 dist-bzip2 \ 38 dist-lzip \ 39 dist-xz \ 41 subdir-objects 43 ACLOCAL_AMFLAGS = -I m4 44 LIBTOOLFLAGS = --verbose 62 cmake/autotools/expat.cmake 65 cmake/autotools/expat-config-version.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 …]
|
| /third_party/skia/third_party/externals/expat/expat/ |
| D | Makefile.am | 9 # 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 …]
|
| D | Changes | 7 #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 17 #531 #534 CVE-2021-45960 -- Fix issues with left shifts by >=29 places 27 (which needs argument "-n" when running xmlwf). 47 #551 CVE-2022-23990 -- Fix unsigned integer overflow in function 52 #34 #466 #484 CVE-2013-0340/CWE-776 -- Protect against billion laughs attacks 53 (denial-of-service; flavors targeting CPU time or RAM or both, 61 - A new error code XML_ERROR_AMPLIFICATION_LIMIT_BREACH to 63 - Two new API functions .. [all …]
|
| /third_party/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 …]
|
| /third_party/ninja/.github/workflows/ |
| D | linux.yml | 11 runs-on: [ubuntu-latest] 15 - uses: actions/checkout@v2 16 - uses: codespell-project/actions-codespell@master 19 - name: Install dependencies 21 … curl -L -O https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.sh 22 chmod +x cmake-3.16.4-Linux-x86_64.sh 23 ./cmake-3.16.4-Linux-x86_64.sh --skip-license --prefix=/usr/local 24 …curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p… 25 …curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p… 26 rpm -U --quiet p7zip-16.02-20.el7.x86_64.rpm [all …]
|
| /third_party/skia/third_party/externals/sfntly/doc/ |
| D | build_cpp.md | 5 * 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/protobuf/cmake/ |
| D | README.md | 1 This directory contains *CMake* files that can be used to build protobuf. 3 You need to have [CMake](http://www.cmake.org), 4 [Git](http://git-scm.com), and [Abseil](https://github.com/abseil/abseil-cpp) 5 installed on your computer before proceeding. We currently support CMake 3.5 6 and newer on both [Windows](#windows-builds) and [Linux](#linux-builds). 8 Most of the instructions will be given using CMake's command-line interface, but 11 # CMake Flags 15 By default, CMake will use whatever C++ version is the system default. Since 20 cmake . -DCMAKE_CXX_STANDARD=14 21 cmake --build . [all …]
|
| /third_party/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 69 option(GEN_FILES "Generate the auto-generated files as needed" OFF) # off in development [all …]
|
| D | README.md | 6 Mbed TLS includes a reference implementation of the [PSA Cryptography API](#psa-cryptography-api). … 9 ------------- 11 … manually, or in a more programmatic way using the Python 3 script `scripts/config.py` (use `--hel… 13 …l environment variables such as `CC` and `CFLAGS` when using the Make and CMake build system (see … 15 We provide some non-standard configurations focused on specific use cases in the `configs/` directo… 18 ------------- 20 The main Mbed TLS documentation is available via [ReadTheDocs](https://mbed-tls.readthedocs.io/). 22 …or the PSA Cryptography API is available [on GitHub](https://arm-software.github.io/psa-api/crypto… 24 To generate a local copy of the library documentation in HTML format, tailored to your compile-time… 33 --------- [all …]
|
| /third_party/json/docs/mkdocs/docs/integration/ |
| D | cmake.md | 1 # CMake chapter 5 You can use the `nlohmann_json::nlohmann_json` interface target in CMake. This target populates the… 6 requirements for [`INTERFACE_INCLUDE_DIRECTORIES`](https://cmake.org/cmake/help/latest/prop_tgt/INT… 7 …riate include directories and [`INTERFACE_COMPILE_FEATURES`](https://cmake.org/cmake/help/latest/p… 12 To use this library from a CMake project, you can locate it directly with [`find_package()`](https:… 17 ```cmake title="CMakeLists.txt" 21 find_package(nlohmann_json 3.11.3 REQUIRED) 27 The package configuration file, `nlohmann_jsonConfig.cmake`, can be used either from an install tre… 32 To embed the library directly into an existing CMake project, place the entire source tree in a sub… 37 ```cmake title="CMakeLists.txt" [all …]
|
| D | package_managers.md | 6 --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 45 …3. 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/mindspore/mindspore-src/source/mindspore/lite/tools/converter/micro/coder/ |
| D | CMakeLists.txt | 1 set(3RD_DIR ${TOP_DIR}/third_party) 11 #include 3rd 12 include_directories(${3RD_DIR}) 25 include(${TOP_DIR}/cmake/external_libs/cmsis.cmake) 27 include(${MICRO_DIR}/cmake/package_wrapper.cmake) 32 include(${MICRO_DIR}/cmake/file_list.cmake) 33 set_property(SOURCE ${FILE_SET} PROPERTY COMPILE_OPTIONS -Wno-error=stringop-overflow=)
|
| /third_party/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 …]
|
| /third_party/skia/third_party/externals/swiftshader/tests/kokoro/gcp_windows/ |
| D | continuous.bat | 5 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/glfw/ |
| D | .gitignore | 1 # The canonical out-of-tree build subdirectory 3 build-* 38 # CMake clutter 43 CMakeDoxygenDefaults.cmake 44 cmake_install.cmake 45 cmake_uninstall.cmake 54 src/glfw3Config.cmake 55 src/glfw3ConfigVersion.cmake 59 src/libglfw.so.3 63 src/libglfw.3.dylib [all …]
|
| /third_party/curl/docs/ |
| D | INSTALL-CMAKE.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 7 # Building with CMake 10 from source code using the CMake build tool. To build with CMake, you of 11 course first have to install CMake. The minimum required version of CMake is 13 tree. Once the correct version of CMake is installed you can follow the 16 CMake builds can be configured either from the command line, or from one of 17 CMake's GUIs. 19 # Current flaws in the curl CMake build [all …]
|
| /third_party/grpc/test/distrib/cpp/ |
| D | run_distrib_test_cmake.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 18 @rem TODO(jtattermusch): Kokoro has pre-installed protoc.exe in C:\Program Files\ProtoC and that di… 19 …TH. To avoid picking up the older version protoc.exe, we change the path to something non-existent. 25 @rem Download OpenSSL-Win32 originally installed from https://slproweb.com/products/Win32OpenSSL.ht… 26 …hell -Command "(New-Object Net.WebClient).DownloadFile('https://storage.googleapis.com/grpc-testin… 27 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.… 30 set OPENSSL_DIR=%cd:\=/%/OpenSSL-Win32 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% -DCMAKE_CXX_STAND… [all …]
|
| D | run_distrib_test_cmake_for_dll.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 18 @rem TODO(jtattermusch): Kokoro has pre-installed protoc.exe in C:\Program Files\ProtoC and that di… 19 …TH. To avoid picking up the older version protoc.exe, we change the path to something non-existent. 25 @rem Download OpenSSL-Win32 originally installed from https://slproweb.com/products/Win32OpenSSL.ht… 26 …hell -Command "(New-Object Net.WebClient).DownloadFile('https://storage.googleapis.com/grpc-testin… 27 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.… 30 set OPENSSL_DIR=%cd:\=/%/OpenSSL-Win32 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. [all …]
|
| /third_party/protobuf/ |
| D | CMakeLists.txt | 1 # Minimum CMake required. If available, accept the policy-controlled behavior up 39 # We support Unity (Jumbo) builds best-effort. 65 include(${protobuf_SOURCE_DIR}/cmake/protobuf-options.cmake) 99 set(protobuf_VERSION_REGEX "^([0-9]+)\\.([0-9]+)\\.([0-9]+)([-]rc[-]|\\.)?([0-9]*)$") 104 string(REGEX REPLACE "${protobuf_VERSION_REGEX}" "\\3" 137 # CheckLinkerFlag module available in CMake >=3.18. 140 …check_linker_flag(CXX -Wl,--version-script=${CMAKE_CURRENT_BINARY_DIR}/cmaketest.map protobuf_HAVE… 144 …set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS} -Wl,--version-script=${CMAKE_CURRENT_BINARY_DIR}/… 157 # CMake v3.13 or newer. 179 # Explicitly set these to empty (override NOT_FOUND) so cmake doesn't [all …]
|
| /third_party/mindspore/mindspore-src/source/scripts/docker/mindspore-gpu/devel/ |
| D | Dockerfile | 1 FROM nvidia/cuda:11.6.2-cudnn8-devel-ubuntu18.04 6 ENV PYTHON_ROOT_PATH /usr/local/python-3.7.5 7 ENV CMAKE_ROOT_PATH /usr/local/cmake-3.14.1 8 ENV OMPI_ROOT_PATH /usr/local/openmpi-4.0.3 10 ENV CUDNN_PATH /usr/lib/x86_64-linux-gnu 15 RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ 16 DEBIAN_FRONTEND=noninteractive apt install -y \ 20 xz-utils \ 21 net-tools \ 22 openssh-client \ [all …]
|
| /third_party/icu/vendor/double-conversion/upstream/ |
| D | CMakeLists.txt | 2 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/openhitls/ |
| D | configure.py | 2 # -*- coding: utf-8 -*- 12 # EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, 17 Generate the modules.cmake file based on command line arguments and configuration files. 23 …./configure.py --enable all # Build all features of openHiT… 24 …./configure.py --enable hitls_crypto # Build all features in the lib… 25 … ./configure.py --enable md # Build all sub features of md. 26 …./configure.py --enable sha2 sha3 hmac # Specifies to build certain fe… 31 ./configure.py --enable sm3 aes ... --asm_type armv8 37 ./configure.py --enable sm3 aes ... --asm_type armv8 --asm sm3 40 ./configure.py --add_options "-O0 -g" --del_options "-O2 -D_FORTIFY_SOURCE=2" [all …]
|
| /third_party/skia/third_party/externals/abseil-cpp/CMake/ |
| D | README.md | 1 # 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 …]
|
12345678910>>...20