Lines Matching +refs:cmake +refs:variables
11 - [CMake](http://www.cmake.org) v2.8.12 or later
58 `PATH` environment variables. This is generally accomplished by
126 cmake -G"Unix Makefiles" [additional CMake flags] {source_directory}
169 cmake -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=Release [additional CMake flags] {source_directory}
202 (run `cmake` with no arguments for a list of available generators.) For
206 cmake -G"Visual Studio 10" [additional CMake flags] {source_directory}
248 cmake -G"MSYS Makefiles" [additional CMake flags] {source_directory}
323 CMake variables can also be used to specify alternate commands or locations for
338 Use export/setenv to set the following environment variables before running
347 Use export/setenv to set the following environment variables before running
362 Create a file called **toolchain.cmake** under *{build_directory}*, with the
374 cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
385 Create a file called **toolchain.cmake** under *{build_directory}*, with the
397 cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
429 cat <<EOF >toolchain.cmake
435 cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
459 # Set these variables to suit your needs
468 cmake -G"Unix Makefiles" \
474 -DCMAKE_TOOLCHAIN_FILE=${NDK_PATH}/build/cmake/android.toolchain.cmake \
486 # Set these variables to suit your needs
495 cmake -G"Unix Makefiles" \
501 -DCMAKE_TOOLCHAIN_FILE=${NDK_PATH}/build/cmake/android.toolchain.cmake \
511 # Set these variables to suit your needs
520 cmake -G"Unix Makefiles" \
524 -DCMAKE_TOOLCHAIN_FILE=${NDK_PATH}/build/cmake/android.toolchain.cmake \
534 # Set these variables to suit your needs
543 cmake -G"Unix Makefiles" \
547 -DCMAKE_TOOLCHAIN_FILE=${NDK_PATH}/build/cmake/android.toolchain.cmake \
562 cmake-gui {source_directory}
566 will display all variables that are relevant to the libjpeg-turbo build, their
606 `CMAKE_INSTALL_LIBDIR`, and `CMAKE_INSTALL_MANDIR` CMake variables allow a
608 distribution should be installed. These directory variables can either be
617 NOTE: If setting one of these directory variables to a relative path using the
621 cmake -G"{generator type}" -DCMAKE_INSTALL_LIBDIR:PATH=lib {source_directory}