Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Radek Hušek
group-connectivity-pub
Commits
566b9dcf
Commit
566b9dcf
authored
Dec 09, 2015
by
Radek Hušek
Committed by
Radek Hušek
Nov 09, 2017
Browse files
Improve README.md and print used options during compilation
parent
0efadf45
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
566b9dcf
...
...
@@ -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
-----
...
...
compileTimeOptions.h
View file @
566b9dcf
...
...
@@ -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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment