Home
last modified time | relevance | path

Searched full:cmake (Results 1 – 25 of 527) sorted by relevance

12345678910>>...22

/external/opencv3/cmake/
DOpenCVGenConfig.cmake2 # Installation for CMake Module: OpenCVConfig.cmake
3 # Part 1/3: ${BIN_DIR}/OpenCVConfig.cmake -> For use *without* "make install"
4 # Part 2/3: ${BIN_DIR}/unix-install/OpenCVConfig.cmake -> For use with "make install"
5 # Part 3/3: ${BIN_DIR}/win-install/OpenCVConfig.cmake -> For use within binary installers/packages
61 # Part 1/3: ${BIN_DIR}/OpenCVConfig.cmake -> For use *without* "make install"
79 # the REPLACE here is needed, because OpenCVModules_armeabi.cmake includes
80 # OpenCVModules_armeabi-*.cmake, which would match OpenCVModules_armeabi-v7a*.cmake.
84 …GETS ${OpenCVModules_TARGETS} FILE "${CMAKE_BINARY_DIR}/OpenCVModules${modules_file_suffix}.cmake")
94 configure_file("${OpenCV_SOURCE_DIR}/cmake/templates/OpenCVConfig.cmake.in" "${CMAKE_BINARY_DIR}/Op…
96 …e_file("${OpenCV_SOURCE_DIR}/cmake/templates/OpenCVConfig-version.cmake.in" "${CMAKE_BINARY_DIR}/O…
[all …]
/external/llvm/docs/
DCMake.rst2 Building LLVM with CMake
11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake
16 `Quick start`_ section. If you are a CMake novice, start with `Basic CMake usage`_
19 you already have experience with CMake, this is the recommended starting point.
26 We use here the command-line, non-interactive CMake interface.
28 #. `Download <http://www.cmake.org/cmake/resources/software.html>`_ and install
29 CMake. Version 2.8.8 is the minimum required.
47 $ cmake path/to/llvm/source/root
49 CMake will detect your development environment, perform a series of tests, and
50 generate the files required for building LLVM. CMake will use default values
[all …]
/external/llvm/cmake/modules/
DCMakeLists.txt1 set(LLVM_INSTALL_PACKAGE_DIR share/llvm/cmake)
6 FILE ${llvm_cmake_builddir}/LLVMExports.cmake)
16 # Generate LLVMConfig.cmake for the build tree.
33 set(LLVM_CONFIG_EXPORTS_FILE "${llvm_cmake_builddir}/LLVMExports.cmake")
35 LLVMConfig.cmake.in
36 ${llvm_cmake_builddir}/LLVMConfig.cmake
44 FILES_MATCHING PATTERN *.cmake
49 # Generate LLVMConfig.cmake for the install tree.
51 # Compute the installation prefix from this LLVMConfig.cmake file location.
64 set(LLVM_CONFIG_EXPORTS_FILE "\${LLVM_CMAKE_DIR}/LLVMExports.cmake")
[all …]
DMakefile1 ##===- cmake/modules/Makefile ------------------------------*- Makefile -*-===##
14 PROJ_cmake := $(DESTDIR)$(PROJ_prefix)/share/llvm/cmake
44 OBJMODS := LLVMConfig.cmake LLVMConfigVersion.cmake LLVMExports.cmake
47 \# Compute the CMake directory from the LLVMConfig.cmake file location.\n\
49 \# Compute the installation prefix from the LLVMConfig.cmake file location.\n\
52 # Compute number of levels (typically 3 - ``share/llvm/cmake/``) to PROJ_prefix
62 $(PROJ_OBJ_DIR)/LLVMConfig.cmake: LLVMConfig.cmake.in Makefile $(LLVMBuildCMakeFrag)
63 $(Echo) 'Generating LLVM CMake package config file'
93 -e 's/@LLVM_CONFIG_EXPORTS_FILE@/$${LLVM_CMAKE_DIR}\/LLVMExports.cmake/' \
102 $(PROJ_OBJ_DIR)/LLVMConfigVersion.cmake: LLVMConfigVersion.cmake.in Makefile
[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 …]
DREADME.cmake7 README.cmake
10 Curl contains CMake build files that provide a way to build Curl with the
11 CMake build tool (www.cmake.org). CMake is a cross platform meta build tool
12 that generates native makefiles and IDE project files. The CMake build
15 Read the INSTALL.cmake file for instructions on how to compile curl with
16 CMake.
/external/ceres-solver/docs/source/
Dbuilding.rst37 - `CMake <http://www.cmake.org>`_ 2.8.0 or later.
113 # CMake
114 sudo apt-get install cmake
147 cmake ../ceres-solver-1.9.0
252 # CMake
253 brew install cmake
268 cmake ../ceres-solver-1.9.0
334 #. Install ``CMake``,
338 #. Run ``CMake``; select the ``ceres-solver-X.Y.Z`` or
339 ``ceres-solver.git`` directory for the CMake file. Then select the
[all …]
/external/dbus/
DREADME.cmake1 This file describes how to compile dbus using the cmake build system
5 - cmake version >= 2.4.4 see http://www.cmake.org
15 2. install cmake and libexpat
21 cmake -G "MinGW Makefiles" [<options, see below>] <dbus-src-root>/cmake
27 2. install cmake and libexpat
33 cmake -G "NMake Makefiles" [<options, see below>] <dbus-src-root>/cmake
39 2. install cmake and libexpat
45 cmake -G "Visual Studio 10" [<options, see below>] <dbus-src-root>/cmake
53 2. install cmake and libexpat
59 cmake -G "Visual Studio 10" [<options, see below>] <dbus-src-root>/cmake
[all …]
/external/boringssl/src/
DBUILDING.md5 * [CMake](http://www.cmake.org/download/) 2.8.8 or later is required.
9 reported to work. If not found by CMake, it may be configured explicitly by
20 by CMake, it may be configured explicitly by setting
27 * [Go](https://golang.org/dl/) is required. If not found by CMake, the go
42 Using Ninja (note the 'N' is capitalized in the cmake invocation):
46 cmake -GNinja ..
53 cmake ..
56 You usually don't need to run `cmake` again after changing `CMakeLists.txt`
64 Intel in `util/`. Wipe out the build directory, recreate it and run `cmake` like
67 cmake -DCMAKE_TOOLCHAIN_FILE=../util/32-bit-toolchain.cmake -GNinja ..
[all …]
/external/parameter-framework/upstream/cmake/
DFindLibXml2.cmake29 # 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/opencv3/platforms/winrt/
Dreadme.txt1 Building OpenCV from Source, using CMake and Command Line
6 CMake 3.1.0 or higher
62 …ar platform you are targeting manually. Due to the current limitations of CMake, separate x86/x64/…
73 Note that x64 CMake generation support is as follows:
83 CMake command line options for Windows Phone and Store
86 cmake [options] <path-to-source>
89 cmake -G "Visual Studio 12 2013" -DCMAKE_SYSTEM_NAME=WindowsPhone -DCMAKE_SYSTEM_VERSION=8.1 <path-…
92 cmake -G "Visual Studio 12 2013 ARM" -DCMAKE_SYSTEM_NAME=WindowsPhone -DCMAKE_SYSTEM_VERSION=8.1 <p…
95 cmake -G "Visual Studio 12 2013" -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=8.1 <path-…
98 cmake -G "Visual Studio 12 2013 ARM" -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=8.1 <p…
[all …]
/external/opencv3/
DCMakeLists.txt2 # Root CMake file for OpenCV
5 # $ cmake <PATH_TO_OPENCV_ROOT>
11 include(cmake/OpenCVMinDepVersions.cmake)
17 #Required to resolve linker error issues due to incompatibility with CMake v3.0+ policies.
18 #CMake fails to find _fseeko() which leads to subsequent linker error.
19 #See details here: http://www.cmake.org/Wiki/CMake/Policies
73 # silence cmake 3.0+ warnings about reading LOCATION attribute
78 # silence cmake 3.0+ warnings about MACOSX_RPATH
94 include(cmake/OpenCVUtils.cmake)
99 # Break in case of popular CMake configuration mistakes
[all …]
/external/llvm/
DCMakeLists.txt1 # See docs/CMake.html for instructions about how to build LLVM with CMake.
15 # CMake 3.1 and higher include generator expressions of the form
59 # The following only works with the Ninja generator in CMake >= 3.0.
64 message(WARNING "Job pooling is only available with Ninja generators and CMake 3.0 and later.")
75 message(WARNING "Job pooling is only available with Ninja generators and CMake 3.0 and later.")
85 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
86 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
129 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
130 set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
131 set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
[all …]
/external/opencv3/doc/tutorials/introduction/linux_gcc_cmake/
Dlinux_gcc_cmake.markdown1 Using OpenCV with gcc and CMake {#tutorial_linux_gcc_cmake}
6 - The easiest way of using OpenCV in your code is to use [CMake](http://www.cmake.org/). A few
9 -# Can easily be combined with other tools by CMake( i.e. Qt, ITK and VTK )
10 - If you are not familiar with CMake, checkout the
11 [tutorial](http://www.cmake.org/cmake/help/cmake_tutorial.html) on its website.
49 ### Create a CMake file
52 @code{.cmake}
62 This part is easy, just proceed as with any other project using CMake:
65 cmake .
/external/ceres-solver/
DCMakeLists.txt67 # Make CMake aware of the cmake folder for local FindXXX scripts,
70 LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
136 # Use ios-cmake to build a static library for iOS
138 # We need to add isysroot to force cmake to find the toolchains from the iOS SDK
148 # Use cmake ../ceres-solver -DCMAKE_TOOLCHAIN_FILE=../ceres-solver/cmake/iOS.cmake \
150 # to config the cmake. The PLATFORM can be one of OS, SIMULATOR and SIMULATOR64.
151 # Check the documentation in iOS.cmake to find more options.
182 # Prior to October 2013, Ceres used some non-CMake standardised variables to
187 # CMake variables: <DEPENDENCY>_LIBRARIES & <DEPENDENCY>_INCLUDE_DIRS. In order
552 # The CACHE STRING logic here and elsewhere is needed to force CMake
[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
14 # CMake Error at /usr/share/cmake-2.6/Modules/CMakeFortranInformation.cmake:7 (GET_FILENAME_COMPON…
19 # My workaround is to invoke cmake twice. If both return codes are zero,
/external/skia/tools/
Dxsan_build18 echo "Bootstrapping CMake"
19 pushd $here/../third_party/externals/cmake
21 make -j $cores cmake
24 cmake=$here/../third_party/externals/cmake/bin/cmake
30 rm -f CMakeCache.txt # Force CMake to re-configure, in case DEPS has changed.
31 $cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ..
44 rm -f CMakeCache.txt # Force CMake to re-configure, in case DEPS has changed.
45 $cmake -DLLVM_USE_SANITIZER=MemoryWithOrigins -DCMAKE_BUILD_TYPE=Release -G Ninja ..
/external/valgrind/docs/internals/
Dhowto_BUILD_KDE42.txt37 of the cmake runs (below), as these tell you of missing libraries that
38 may screw up the build. After a cmake run, you may want to install
39 some supporting libs (through yast, etc) before re-running cmake. The
128 …rm -f CMakeCache.txt && cmake /path/to/source/tree/for/this/package -DCMAKE_INSTALL_PREFIX=$KDEINS…
159 rm -f CMakeCache.txt && cmake ~/trunk_kdesupport \
168 rm -f CMakeCache.txt && cmake ~/trunk_KDE/kdelibs \
177 rm -f CMakeCache.txt && cmake ~/trunk_KDE/kdepimlibs \
186 rm -f CMakeCache.txt && cmake ~/trunk_KDE/kdebase/runtime \
195 rm -f CMakeCache.txt && cmake ~/trunk_KDE/kdebase/workspace \
204 rm -f CMakeCache.txt && cmake ~/trunk_KDE/kdebase/apps \
[all …]
/external/ceres-solver/cmake/
DiOS.cmake1 # This file is part of the ios-cmake project. It was retrieved from
2 # https://github.com/cristeab/ios-cmake.git, which is a fork of
3 # https://code.google.com/p/ios-cmake/. Which in turn is based off of
4 # the Platform/Darwin.cmake and Platform/UnixPaths.cmake files which
5 # are included with CMake 2.8.4
7 # The ios-cmake project is licensed under the new BSD license.
40 # This file is based off of the Platform/Darwin.cmake and Platform/UnixPaths.cmake
41 # files which are included with CMake 2.8.4
68 # Thanks to the android-cmake project for providing the command
77 # Required as of cmake 2.8.10
[all …]
/external/skia/cmake/
Dcmake_build7 # Script for building with CMake on Skia build bots.
8 # If you have CMake installed on your system, you can just use it normally.
22 echo "Bootstrapping CMake"
23 pushd $here/../third_party/externals/cmake
25 make -j $cores cmake
28 echo "Building with bootstrapped CMake"
31 $here/../third_party/externals/cmake/bin/cmake -DCMAKE_BUILD_TYPE=$BUILDTYPE $here -G Ninja
/external/clang/
DCMakeLists.txt75 set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR}/share/llvm/cmake")
76 set(LLVMCONFIG_FILE "${LLVM_CMAKE_PATH}/LLVMConfig.cmake")
125 Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
226 message(FATAL_ERROR "In-source builds are not allowed. CMake would overwrite "
227 "the makefiles distributed with LLVM. Please create a directory and run cmake "
306 ${CLANG_SOURCE_DIR}/include/clang/Config/config.h.cmake
314 # [[TARGET cmake-target-name] [DEPENDS extra-dependency ...]]
320 # and, if cmake-target-name is provided, creates a custom target for
414 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
484 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
[all …]
/external/clang/docs/
DHowToSetupToolingForLLVM.rst16 from the ``compilation_commands.json`` file, generated by CMake. When
20 build using CMake to use clang tools.
22 Setup Clang Tooling Using CMake and Make
25 If you intend to use make to build LLVM, you should have CMake 2.8.6 or
26 later installed (can be found `here <http://cmake.org>`_).
28 First, you need to generate Makefiles for LLVM with CMake. You need to
29 make a build directory and run CMake from it:
35 $ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON path/to/llvm/sources
40 CMake variables for lazy people.
150 at least CMake 2.8.9.
[all …]
/external/parameter-framework/upstream/
DREADME.md76 - CMake (v3.2.2 or later) (v3.3.0 or later on Windows);
107 **To list all available configuration options, try** `cmake -L` (you may also
112 If you are already familiar with CMake, you know what to do.
114 Run `cmake .` then `make`. You may then install libraries, headers and
117 directory, you may do so by passing it to the `cmake .` command; e.g.
119 # Always use absolute paths in CMake "-D" options: you don't know where
121 cmake -DCMAKE_INSTALL_PREFIX=/path/to/custom/install .
127 cmake -DCMAKE_PREFIX_PATH='/path/to/dependency1/;/path/to/dependency2/'
129 For more information on how to use `CMAKE_PREFIX_PATH`, see CMake's
132 Also, CMake can build a project out-of-tree, which is the recommended method:
[all …]
/external/opencv3/doc/tutorials/introduction/crosscompilation/
Darm_crosscompile_with_cmake.markdown14 - CMake 2.6 or higher;
58cmake [<some optional parameters>] -DCMAKE_TOOLCHAIN_FILE=<path to the OpenCV source directory>/pl…
60 Toolchain uses *gnueabihf* EABI convention by default. Add -DSOFTFP=ON cmake argument to switch
63cmake [<some optional parameters>] -DSOFTFP=ON -DCMAKE_TOOLCHAIN_FILE=<path to the OpenCV source d…
71 cmake -DCMAKE_TOOLCHAIN_FILE=../arm-gnueabi.toolchain.cmake ../../..
87 cmake command line to enable code generation for VFPv3 and -DENABLE_NEON=ON for using NEON SIMD
91 Cmake scripts download TBB sources from official project site
/external/vulkan-validation-layers/
Dupdate_external_sources.bat4 REM Determine the appropriate CMake strings for the current version of Visual Studio
28 echo --build-glslang pulls glslang_revision, configures CMake, builds Release and Debug
29 … echo --build-spirv-tools pulls spirv-tools_revision, configures CMake, builds Release and Debug
103 for %%X in (cmake.exe) do (set FOUND=%%~$PATH:X)
106 echo cmake.exe not found
107 echo Get CNake 2.8 for Windows here: http://www.cmake.org/cmake/resources/software.html
108 …ho Install and ensure each makes it into your PATH, default is "C:\Program Files (x86)\CMake\bin"
260 …echo Generating 32-bit Glslang CMake files for Visual Studio %VS_VERSION% -DCMAKE_INSTALL_PREFIX=i…
261 cmake -G "Visual Studio %VS_VERSION%" -DCMAKE_INSTALL_PREFIX=install ..
290 …echo Generating 64-bit Glslang CMake files for Visual Studio %VS_VERSION% -DCMAKE_INSTALL_PREFIX=i…
[all …]

12345678910>>...22