diff options
author | Robin Krahl <me@robin-krahl.de> | 2017-03-23 23:39:50 +0100 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2017-03-23 23:39:50 +0100 |
commit | cbe3dc9f40aaab8a2ff641ce824766b41d1d407c (patch) | |
tree | eb17bcf5f21f82ea3493c3d9ca2f1041eda2eac2 /include | |
parent | 400bdee335656eb873d6cd60f9cbc1be76a2810a (diff) | |
download | sqlitepp-cbe3dc9f40aaab8a2ff641ce824766b41d1d407c.tar.gz sqlitepp-cbe3dc9f40aaab8a2ff641ce824766b41d1d407c.tar.bz2 |
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.
Diffstat (limited to 'include')
-rw-r--r-- | include/sqlitepp/sqlitepp.h | 9 |
1 files changed, 3 insertions, 6 deletions
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 /// |