dqn: Update readme
This commit is contained in:
parent
c3902e3a29
commit
5fdb1aa1a4
26
readme.md
26
readme.md
@ -9,20 +9,34 @@ amalgamates all the files into one translation unit.
|
|||||||
## Build
|
## Build
|
||||||
|
|
||||||
To build with this library, copy all the `*.[h|cpp]` files at the root of the
|
To build with this library, copy all the `*.[h|cpp]` files at the root of the
|
||||||
repository and in one header file,
|
repository to your desired location, accessible by your project and in one
|
||||||
|
header file include the header.
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
#include "dqn.h"
|
#include "dqn.h"
|
||||||
```
|
```
|
||||||
|
|
||||||
Which includes all other files and their declaration into your header. In one
|
`dqn.h` includes all other files and their declaration into your header. In
|
||||||
`.cpp` file defined the implementation macro to enable the implementation of the
|
*one* `.cpp` file define the macro to enable the implementation of the header in
|
||||||
header in that translation unit,
|
the translation unit.
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
#define DQN_IMPLEMENTATION
|
#define DQN_IMPLEMENTATION
|
||||||
#include "dqn.h"
|
#include "dqn.h"
|
||||||
```
|
```
|
||||||
|
|
||||||
Ensure that the folder containing the files is part of the include search path
|
Finally ensure that the compiler has in its search paths for the include
|
||||||
for the compiler for the amalgamated `dqn.h` to successfully locate the files.
|
directory where headers are located, e.g. `-I <path/to/dqn/headers>`.
|
||||||
|
|
||||||
|
## Customisation
|
||||||
|
|
||||||
|
The headers provide macros to compile out sections that are not needed. This can
|
||||||
|
be useful to speed up compile times if you want a particular part of the
|
||||||
|
library. Each header contains a table-of-contents that denotes the macro to
|
||||||
|
define to disable that section that should be defined before the header include.
|
||||||
|
|
||||||
|
```cpp
|
||||||
|
#define DQN_NO_VARRAY // Disable virtual array container
|
||||||
|
#define DQN_NO_JSON_BUILDER // Disable the JSON string builder
|
||||||
|
#include "dqn.h"
|
||||||
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user