Welcome to the Emacs shell ~/prog_dev/boost/git/sqlpp11 $ ls ~/prog_dev/boost/git/sqlpp11 $ git clone https://github.com/rbock/sqlpp11.git Cloning into 'sqlpp11'... remote: Counting objects: 638, done. remote: Compressing objects: 100% (345/345), done. remote: Total 638 (delta 455), reused 415 (delta 235) Receiving objects: 100% (638/638), 130.62 KiB | 112 KiB/s, done. Resolving deltas: 100% (455/455), done. ~/prog_dev/boost/git/sqlpp11 $ ls sqlpp11 ~/prog_dev/boost/git/sqlpp11 $ cd sqlpp11 ~/prog_dev/boost/git/sqlpp11/sqlpp11 $ ls CMakeLists.txt CREDITS LICENSE README.md database_api include tests ~/prog_dev/boost/git/sqlpp11/sqlpp11 $ cmake cmake version 2.8.7 Usage cmake [options] cmake [options] Options -C = Pre-load a script to populate the cache. -D := = Create a cmake cache entry. -U = Remove matching entries from CMake cache. -G = Specify a makefile generator. -Wno-dev = Suppress developer warnings. -Wdev = Enable developer warnings. -E = CMake command mode. -i = Run in wizard mode. -L[A][H] = List non-advanced cached variables. --build = Build a CMake-generated project binary tree. -N = View mode only. -P = Process script mode. --find-package = Run in pkg-config like mode. --graphviz=[file] = Generate graphviz of dependencies. --system-information [file] = Dump information about this system. --debug-trycompile = Do not delete the try_compile build tree. Only useful on one try_compile at a time. --debug-output = Put cmake in a debug mode. --trace = Put cmake in trace mode. --warn-uninitialized = Warn about uninitialized values. --warn-unused-vars = Warn about unused variables. --no-warn-unused-cli = Don't warn about command line options. --check-system-vars = Find problems with variable usage in system files. --help-command cmd [file] = Print help for a single command and exit. --help-command-list [file] = List available listfile commands and exit. --help-commands [file] = Print help for all commands and exit. --help-compatcommands [file]= Print help for compatibility commands. --help-module module [file] = Print help for a single module and exit. --help-module-list [file] = List available modules and exit. --help-modules [file] = Print help for all modules and exit. --help-custom-modules [file]= Print help for all custom modules and exit. --help-policy cmp [file] = Print help for a single policy and exit. --help-policies [file] = Print help for all policies and exit. --help-property prop [file] = Print help for a single property and exit. --help-property-list [file] = List available properties and exit. --help-properties [file] = Print help for all properties and exit. --help-variable var [file] = Print help for a single variable and exit. --help-variable-list [file] = List documented variables and exit. --help-variables [file] = Print help for all variables and exit. --copyright [file] = Print the CMake copyright and exit. --help,-help,-usage,-h,-H,/?= Print usage information and exit. --help-full [file] = Print full help and exit. --help-html [file] = Print full help in HTML format. --help-man [file] = Print full help as a UNIX man page and exit. --version,-version,/V [file]= Show program name/version banner and exit. Generators The following generators are available on this platform: Unix Makefiles = Generates standard UNIX makefiles. CodeBlocks - Unix Makefiles = Generates CodeBlocks project files. Eclipse CDT4 - Unix Makefiles = Generates Eclipse CDT 4.0 project files. KDevelop3 = Generates KDevelop 3 project files. KDevelop3 - Unix Makefiles = Generates KDevelop 3 project files. ~/prog_dev/boost/git/sqlpp11/sqlpp11 $ cmake tests -- The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check for working C compiler: /usr/bin/gcc -- Check for working C compiler: /usr/bin/gcc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done CMake Warning (dev) in CMakeLists.txt: No cmake_minimum_required command is present. A line of code such as cmake_minimum_required(VERSION 2.8) should be added at the top of the file. The version specified may be lower if you wish to support older CMake versions for this project. For more information run "cmake --help-policy CMP0000". This warning is for project developers. Use -Wno-dev to suppress it. -- Configuring done -- Generating done -- Build files have been written to: /home/evansl/prog_dev/boost/git/sqlpp11/sqlpp11 ~/prog_dev/boost/git/sqlpp11/sqlpp11 $ ls CMakeCache.txt CMakeLists.txt LICENSE README.md database_api tests CMakeFiles CREDITS Makefile cmake_install.cmake include ~/prog_dev/boost/git/sqlpp11/sqlpp11 $ make install make: *** No rule to make target `install'. Stop. ~/prog_dev/boost/git/sqlpp11/sqlpp11 $