aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-01-06 10:25:58 +0100
committerdec05eba <dec05eba@protonmail.com>2018-01-06 10:26:03 +0100
commit39a17eda8c8fb6142655e78986c0b37b5ce9199c (patch)
treec7e6780b1b385959bcca309b58c4eddd26011133 /README.md
parent9bf72ceea8d924492aac5969c14650517849658b (diff)
Add define.static and define.dynamic to readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index cd06dc6..a930201 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,12 @@ xxhash = "0.1.0"
[define]
BOOST_ASIO_SEPERATE_COMPILATION = "1"
+[define.static]
+BOOST_COMPILE_STATIC = "1"
+
+[define.dynamic]
+BOOST_COMPILE_DYNAMIC = "1"
+
[config]
expose_include_dirs = ["include"]
@@ -84,6 +90,10 @@ This will later change and you should be able to choose minimum version and rang
Dependencies are automatically choosen from system (linux, mac) or if no package manager exists, then it's download from github
## define
Optional. A list of definitions which are specified in name-value pairs where the name is the preprocessor to define (in c: #define name value)
+## define.static
+Works like \[define], but these definitions are only used when building static project. If a definition with the same exists in \[define], then it's overwritten
+## define.dynamic
+Works like \[define], but these definitions are only used when building dynamic project. If a definition with the same exists in \[define], then it's overwritten
## config
### expose_include_dirs
Optional. A list of directories which contains (header) files which should be exposed to dependencies as directories to include globally. This means that dependencies can include (header) files from the dependency without specifying path to the dependency