HomeSort by relevance Sort by last modified time
    Searched refs:CMake (Results 1 - 25 of 30) sorted by null

1 2

  /external/flatbuffers/conan/test_package/
conanfile.py 4 from conans import ConanFile, CMake
10 generators = "cmake"
13 cmake = CMake(self)
14 cmake.configure()
15 cmake.build()
  /external/google-benchmark/conan/test_package/
conanfile.py 4 from conans import ConanFile, CMake
10 generators = "cmake"
13 cmake = CMake(self)
14 cmake.configure()
15 cmake.build()
  /external/catch2/.conan/test_package/
conanfile.py 3 from conans import ConanFile, CMake
9 generators = "cmake"
12 cmake = CMake(self)
13 cmake.configure()
14 cmake.build()
  /external/catch2/
conanfile.py 2 from conans import ConanFile, CMake
13 exports_sources = ("single_include/*", "CMakeLists.txt", "CMake/*", "contrib/*")
14 generators = "cmake"
17 cmake = CMake(self)
18 cmake.definitions["BUILD_TESTING"] = "OFF"
19 cmake.definitions["CATCH_INSTALL_DOCS"] = "OFF"
20 cmake.definitions["CATCH_INSTALL_HELPERS"] = "ON"
21 cmake.configure()
22 cmake.install(
    [all...]
  /external/google-fruit/test_package/
conanfile.py 3 from conans import ConanFile, CMake, tools
8 generators = "cmake"
11 cmake = CMake(self)
14 cmake.configure()
15 cmake.build()
  /external/google-fruit/
conanfile.py 1 from conans import ConanFile, CMake, tools
14 generators = "cmake"
43 include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
47 cmake = CMake(self)
48 cmake.definitions["FRUIT_IS_BEING_BUILT_BY_CONAN"] = "YES"
49 cmake.definitions["BUILD_SHARED_LIBS"] = "YES" if self.options.shared else "NO"
52 cmake.definitions["BOOST_DIR"] = "."
54 cmake.definitions["FRUIT_USES_BOOST"] = "NO"
56 cmake.definitions["FRUIT_TESTS_USE_PRECOMPILED_HEADERS"] = "NO
    [all...]
  /external/flatbuffers/
conanfile.py 8 from conans import ConanFile, CMake, tools
22 generators = "cmake"
24 exports_sources = ["CMake/*", "include/*", "src/*", "grpc/*", "CMakeLists.txt", "conan/CMakeLists.txt"]
27 """Wrap the original CMake file to call conan_basic_setup
39 """Create CMake instance and execute configure step
41 cmake = CMake(self)
42 cmake.definitions["FLATBUFFERS_BUILD_TESTS"] = False
43 cmake.definitions["FLATBUFFERS_BUILD_SHAREDLIB"] = self.options.shared
44 cmake.definitions["FLATBUFFERS_BUILD_FLATLIB"] = not self.options.share
    [all...]
  /external/google-benchmark/
conanfile.py 1 from conans import ConanFile, CMake, tools
16 generators = "cmake"
30 # Wrap the original CMake file to call conan_basic_setup
45 cmake = CMake(self)
47 cmake.definitions["BENCHMARK_ENABLE_TESTING"] = "OFF"
48 cmake.definitions["BENCHMARK_ENABLE_GTEST_TESTS"] = "OFF"
49 cmake.definitions["BENCHMARK_ENABLE_LTO"] = "ON" if self.options.enable_lto else "OFF"
50 cmake.definitions["BENCHMARK_ENABLE_EXCEPTIONS"] = "ON" if self.options.enable_exceptions else "OFF"
54 cmake.definitions["BENCHMARK_BUILD_32_BITS"] = "ON" if "64" not in str(self.settings.arch) else "OFF
    [all...]
  /external/swiftshader/build/
cmake.sh 3 # This shell script is for (re)generating Visual Studio project files from CMake
11 echo files from CMake. It should be run from an MSYS/MinGW bash shell, such as
25 cmake -G"$CMAKE_GENERATOR" \
44 # CMake executable path
45 CMAKE=$(where cmake | head --lines=1 | sed 's?\\?\\\\?g')
51 --expression="s?$CMAKE?cmake?g" {} \
  /external/libcxx/utils/docker/scripts/
build_gcc.sh 26 All options after '--' are passed to CMake invocation.
build_install_llvm.sh 15 Usage: build_install_llvm.sh [options] -- [cmake-args]
17 Run cmake with the specified arguments. Used inside docker container.
23 -i|--install-target name of a cmake install target to build and include in
30 All options after '--' are passed to CMake invocation.
103 cmake -GNinja \
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/docker/scripts/
build_install_llvm.sh 15 Usage: build_install_llvm.sh [options] -- [cmake-args]
17 Run cmake with the specified arguments. Used inside docker container.
23 -i|--install-target name of a cmake install target to build and include in
28 All options after '--' are passed to CMake invocation.
82 cmake -GNinja \
  /external/google-fruit/extras/scripts/
postsubmit.bat 8 set NEW_PATH=C:\Windows\system32;C:\Windows;%PYTHON3_PATH%;%PYTHON3_PATH%\Scripts;C:\Program Files (x86)\CMake\bin;
31 cmake.exe -G "%CMAKE_GENERATOR%" .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% %ADDITIONAL_CMAKE_ARGS%
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/docker/
build_docker_image.sh 40 project to a list LLVM_ENABLE_PROJECTS, passed to CMake.
49 -i|--install-target name of a cmake install target to build and include in
55 All options after '--' are passed to CMake invocation.
65 doesn't override CMake defaults, which produces a Debug and non-boostrapped
  /external/skia/gn/
gn_to_cmake.py 33 """Escapes the string 'a' for use inside a CMake string.
47 """Escapes the string 'a' for use as a CMake target name.
49 CMP0037 in CMake 3.0 restricts target names to "^[A-Za-z0-9_.:+-]+$"
61 """Sets a CMake variable."""
70 """Sets a CMake variable to a list."""
270 #TODO: CMake 3.7 is introducing DEPFILE
343 #TODO: CMake 3.7 is introducing DEPFILE
376 # CMake distinguishes between copying files and copying directories but
441 # CMake does not have per target lang compile flags.
487 # As of cmake 3.11 add_library must have sources. If there ar
    [all...]
  /external/skqp/gn/
gn_to_cmake.py 33 """Escapes the string 'a' for use inside a CMake string.
47 """Escapes the string 'a' for use as a CMake target name.
49 CMP0037 in CMake 3.0 restricts target names to "^[A-Za-z0-9_.:+-]+$"
61 """Sets a CMake variable."""
70 """Sets a CMake variable to a list."""
270 #TODO: CMake 3.7 is introducing DEPFILE
343 #TODO: CMake 3.7 is introducing DEPFILE
376 # CMake distinguishes between copying files and copying directories but
441 # CMake does not have per target lang compile flags.
487 # As of cmake 3.11 add_library must have sources. If there ar
    [all...]
  /external/boringssl/src/util/
godeps.go 15 // godeps prints out dependencies of a package in either CMake or Make depfile
19 // However, CMake only supports depfiles for custom commands with Ninja and
20 // starting CMake 3.7. For other configurations, we also support CMake's format,
21 // but CMake must be rerun when file lists change.
35 format = flag.String("format", "cmake", "The format to output to, either 'cmake' or 'depfile'")
42 // See https://cmake.org/cmake/help/v3.0/manual/cmake-language.7.html#quoted-argumen
    [all...]
  /external/expat/
Makefile.am 51 CMake.README \
52 ConfigureChecks.cmake \
53 expat_config.h.cmake
  /external/libcxx/
appveyor-reqs-install.cmd 26 :: Install a recent CMake
28 if NOT EXIST cmake (
29 appveyor DownloadFile https://cmake.org/files/v3.7/cmake-3.7.2-win64-x64.zip -FileName cmake.zip
30 7z x cmake.zip -oC:\projects\deps > nul
31 move C:\projects\deps\cmake-* C:\projects\deps\cmake
32 rm cmake.zip
34 @set PATH=C:\projects\deps\cmake\bin;%PATH
    [all...]
  /external/googletest/googletest/
README.md 50 ### Using CMake
52 Google Test comes with a CMake build script (
55 If you don't have CMake installed already, you can download it for free from
56 <http://www.cmake.org/>.
58 CMake works by generating native makefiles or build projects that can be used in
60 standalone project or it can be incorporated into an existing CMake build for
63 #### Standalone CMake Project
70 cmake ${GTEST_DIR} # Generate native build scripts.
75 cmake -Dgtest_build_samples=ON ${GTEST_DIR}
86 #### Incorporating Into An Existing CMake Projec
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/
README.md 50 ### Using CMake
52 Google Test comes with a CMake build script (
55 If you don't have CMake installed already, you can download it for free from
56 <http://www.cmake.org/>.
58 CMake works by generating native makefiles or build projects that can be used in
60 standalone project or it can be incorporated into an existing CMake build for
63 #### Standalone CMake Project
70 cmake ${GTEST_DIR} # Generate native build scripts.
75 cmake -Dgtest_build_samples=ON ${GTEST_DIR}
86 #### Incorporating Into An Existing CMake Projec
    [all...]
  /external/googletest/googletest/docs/
Pkgconfig.md 18 ### CMake ###
20 Using `pkg-config` in CMake is fairly easy:
22 ``` cmake
127 tutorial and you try to run `cmake`. It is very possible that you get a
132 CMake Error at /usr/share/cmake/Modules/FindPkgConfig.cmake:640 (message):
  /external/llvm/utils/release/
build_llvm_package.bat 11 REM Visual Studio 2013, CMake, Ninja, SVN, GNUWin32,
56 cmake -GNinja %cmake_flags% ..\llvm || exit /b
66 cmake -GNinja %cmake_flags% -DBUILD_CLANG_FORMAT_VS_PLUGIN=ON ..\llvm || exit /b
80 cmake -GNinja %cmake_flags% ..\llvm || exit /b
90 cmake -GNinja %cmake_flags% ..\llvm || exit /b
  /external/brotli/
configure-cmake 3 # Autotools-style (./configure) wrapper for CMake
4 # <https://github.com/nemequ/configure-cmake>
9 # CMake) in your project. Just put "include (GNUInstallDirs)" in
18 # <https://github.com/nemequ/configure-cmake/issues>.
27 CMAKE_CMD="cmake"
107 --pass-thru pass remaining arguments through to CMake
265 # (AFAIK), but for cmake you have to do -DCMAKE_BUILD_TYPE=Debug.
310 # Unlike CFLAGS/CXXFLAGS/CC/CXX, LDFLAGS isn't handled by CMake, so we
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
build_llvm_package.bat 11 REM Visual Studio 2017, CMake, Ninja, SVN, GNUWin32,
58 cmake -GNinja %cmake_flags% -DCMAKE_BUILD_TYPE=MinSizeRel ..\llvm || exit /b
68 cmake -GNinja %cmake_flags% ..\llvm || exit /b
80 cmake -GNinja %cmake_flags% -DBUILD_CLANG_FORMAT_VS_PLUGIN=ON ..\llvm || exit /b
93 cmake -GNinja %cmake_flags% -DCMAKE_BUILD_TYPE=MinSizeRel ..\llvm || exit /b
103 cmake -GNinja %cmake_flags% ..\llvm || exit /b

Completed in 237 milliseconds

1 2