From cbe3dc9f40aaab8a2ff641ce824766b41d1d407c Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Thu, 23 Mar 2017 23:39:50 +0100 Subject: Move from CMake to a plain Makefile The Makefile contains the rules to build both the library and the test binary, and to create the HTML and LaTeX documentation. Settings like library paths and compiler options are set in config.mk. --- include/sqlitepp/sqlitepp.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'include/sqlitepp') diff --git a/include/sqlitepp/sqlitepp.h b/include/sqlitepp/sqlitepp.h index 8e5bc0c..af1403c 100644 --- a/include/sqlitepp/sqlitepp.h +++ b/include/sqlitepp/sqlitepp.h @@ -17,12 +17,9 @@ /// **sqlitepp** is a C++ wrapper for the official SQLite3 C API. /// /// \section compile Compiling sqlitepp -/// sqlitepp uses CMake as a build tool. To build sqlitepp from source, -/// download the source from GitHub and then execute these commands: -/// \code -/// $ mkdir bin && cd bin -/// $ cmake .. && make -/// \endcode +/// sqlitepp uses GNU Make as a build tool. To build sqlitepp from source, +/// download the source from GitHub and then run `make`. You might have to +/// settings in `config.mk`. /// /// \section using Using sqlitepp /// -- cgit v1.2.1