Skip to content
Snippets Groups Projects
Commit 566b9dcf authored by Radek Hušek's avatar Radek Hušek Committed by Radek Hušek
Browse files

Improve README.md and print used options during compilation

parent 0efadf45
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,9 @@ Compilation
Just do `make`. Requires Cython >= 0.17.
To compile with nondefault options use i.e. `CXXFLAGS="-DSAVE_MEMORY=0" make`
to turn off `SAVE_MEMORY`. For list of options see file `compileTimeOptions.h`.
Usage
-----
......
......@@ -5,7 +5,11 @@
#ifndef SAVE_MEMORY
#define SAVE_MEMORY 1
#endif
#if SAVE_MEMORY
#pragma message "SAVE_MEMORY ON"
#else
#pragma message "SAVE_MEMORY off"
#endif
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment