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

1 2 3 4 5 6

  /external/eigen/scripts/
debug.in 3 cmake -DCMAKE_BUILD_TYPE=Debug .
release.in 3 cmake -DCMAKE_BUILD_TYPE=Release .
  /external/grpc-grpc/test/distrib/cpp/
run_distrib_test_cmake_as_submodule.sh 20 # Build helloworld example using cmake, including grpc with "add_subdirectory"
22 mkdir -p cmake/build
23 cd cmake/build
24 cmake -DGRPC_AS_SUBMODULE=ON ../..
run_distrib_test_cmake.sh 28 mkdir -p cmake/build
29 cd cmake/build
30 cmake -DCMAKE_BUILD_TYPE=Release ../..
37 mkdir -p cmake/build
38 cd cmake/build
39 cmake -DCMAKE_BUILD_TYPE=Release ../..
46 mkdir -p cmake/build
47 cd cmake/build
48 cmake -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release ..
54 mkdir -p cmake/buil
    [all...]
  /external/grpc-grpc/tools/run_tests/helper_scripts/
pre_build_cmake.sh 20 mkdir -p cmake/build
21 cd cmake/build
23 # MSBUILD_CONFIG's values are suitable for cmake as well
24 cmake -DgRPC_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE="${MSBUILD_CONFIG}" ../..
  /external/cn-cbor/
build.sh 5 cd build && cmake .. && make $*
  /external/tensorflow/tensorflow/contrib/cmake/
make.sh 24 cmake ..
  /external/Reactive-Extensions/RxCpp/projects/scripts/
travis-install.sh 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
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"
25 brew install cmake || echo "suppress failures in order to ignore warnings"
26 brew upgrade cmake || echo "suppress failures in order to ignore warnings
    [all...]
  /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/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/drrickorang/LoopbackApp/app/
build.gradle 2 * The default build is with CMake Plugin.
4 * a workable, just add hooks to this file to replace cmake at the "cmake"
17 externalNativeBuild.cmake {
23 cmake {
  /external/grpc-grpc/tools/run_tests/artifacts/
build_artifact_csharp_android.sh 24 cp cmake/build/libgrpc_csharp_ext.so "${ARTIFACTS_OUT}"
  /external/swiftshader/kokoro/gcp_ubuntu/
continuous.sh 14 cmake ..
  /external/freetype/builds/cmake/
testbuild.sh 12 # This script tests the CMake build. Simply run
14 # builds/cmake/testbuild.sh
18 # BUILD_SHARED_LIBS=1 builds/cmake/testbuild.sh
28 # - The variable BUILD_SHARED_LIBS will be forwarded to the CMake project
37 tmpdir=/tmp/freetype-cmake-testbuild
57 (set -x; cmake -H$ftdir \
61 (set -x; cmake --build $tmpdir/ftb \
65 (set -x; cmake $tmpdir/ftb \
67 (set -x; cmake --build $tmpdir/ftb \
77 project(freetype-cmake-testbuild
    [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...]
.travis-libcxx-setup.sh 3 # Install a newer CMake version
4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh
5 chmod +x install-cmake.sh
6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license
20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \
  /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/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/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/libcxx/utils/google-benchmark/
.travis-libcxx-setup.sh 3 # Install a newer CMake version
4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh
5 chmod +x install-cmake.sh
6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license
20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \
  /external/grpc-grpc-java/buildscripts/
make_dependencies.bat 2 set CMAKE_NAME=cmake-3.3.2-win32-x86
4 if not exist "protobuf-%PROTOBUF_VER%\cmake\build\Release\" (
9 echo -PtargetArch=x86_32 -PvcProtobufLibs=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\Release -PvcProtobufInclude=%cd%\protobuf-%PROTOBUF_VER%\cmake\build\include
15 where /q cmake
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
38 cmake -Dprotobuf_BUILD_TESTS=OFF -G "Visual Studio %VisualStudioVersion:~0,2%%CMAKE_VSARCH%" .. || exit /b 1
47 powershell -command "$ErrorActionPreference = 'stop'; & { iwr https://cmake.org/files/v3.3/%CMAKE_NAME%.zip -OutFile cmake.zip }" || exit /b
    [all...]
  /external/lz4/contrib/debian/
rules 4 include /usr/share/cdbs/1/class/cmake.mk
  /external/tensorflow/tensorflow/tools/ci_build/builds/
cmake.sh 38 # Run TensorFlow cmake build.
46 cmake -DCMAKE_BUILD_TYPE=Release ../tensorflow/contrib/cmake
  /external/bcc/debian/
rules 12 dh $@ --buildsystem=cmake --parallel --with python2,python3
16 dh_auto_test -O--buildsystem=cmake -O--no-parallel
18 # FIXME: LLVM_DEFINITIONS is broken somehow in LLVM cmake upstream

Completed in 1560 milliseconds

1 2 3 4 5 6