Skip to content

Instantly share code, notes, and snippets.

@avantgardnerio
Created November 29, 2015 21:52
Show Gist options
  • Save avantgardnerio/37661206aa6c199dc68b to your computer and use it in GitHub Desktop.
Save avantgardnerio/37661206aa6c199dc68b to your computer and use it in GitHub Desktop.
bgardner@bgdell:~/projects/cget-cli/bin$ cat out.txt
Usage
cmake [options] <path-to-source>
cmake [options] <path-to-existing-build>
Specify a source directory to (re-)generate a build system for it in the
current working directory. Specify an existing build directory to
re-generate its build system.
Run 'cmake --help' for more information.
bgardner@bgdell:~/projects/cget-cli/bin$ cmake .. > out.txt
Getting RapidJSON...
Building RapidJSON... (With: '-DRAPIDJSON_BUILD_TESTS=OFF -DRAPIDJSON_BUILD_DOC=OFF -DRAPIDJSON_BUILD_EXAMPLES=OFF')
CMake Warning at .cget/core.cmake:155 (find_package):
By not providing "FindRapidJSON.cmake" in CMAKE_MODULE_PATH this project
has asked CMake to find a package configuration file provided by
"RapidJSON", but CMake did not find one.
Could not find a package configuration file provided by "RapidJSON"
(requested version 1.0.2) with any of the following names:
RapidJSONConfig.cmake
rapidjson-config.cmake
Add the installation prefix of "RapidJSON" to CMAKE_PREFIX_PATH or set
"RapidJSON_DIR" to a directory containing one of the above files. If
"RapidJSON" provides a separate development package or SDK, be sure it has
been installed.
Call Stack (most recent call first):
package.cmake:3 (CGET_HAS_DEPENDENCY)
CMakeLists.txt:12 (include)
Getting gflags...
Building gflags...
CMake Warning at .cget/core.cmake:155 (find_package):
By not providing "Findgflags.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "gflags", but
CMake did not find one.
Could not find a package configuration file provided by "gflags" (requested
version 2.1.2) with any of the following names:
gflagsConfig.cmake
gflags-config.cmake
Add the installation prefix of "gflags" to CMAKE_PREFIX_PATH or set
"gflags_DIR" to a directory containing one of the above files. If "gflags"
provides a separate development package or SDK, be sure it has been
installed.
Call Stack (most recent call first):
package.cmake:6 (CGET_HAS_DEPENDENCY)
CMakeLists.txt:12 (include)
Getting CURL...
Building CURL...
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
CURL_INCLUDE_DIR (ADVANCED)
used as include directory in directory /home/bgardner/projects/cget-cli
used as include directory in directory /home/bgardner/projects/cget-cli
CURL_LIBRARY (ADVANCED)
linked by target "cget-cli" in directory /home/bgardner/projects/cget-cli
bgardner@bgdell:~/projects/cget-cli/bin$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment