Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Germann <ulrich.germann@gmail.com>2017-03-06 02:31:58 +0300
committerUlrich Germann <ulrich.germann@gmail.com>2017-03-06 02:31:58 +0300
commit3d575c42f6c814e2fe33f8f75f08f63f08c410ee (patch)
treea9ac7aac975bb68b05a2e1150b36ea5767ef556b /README.md
parentc79911b514bc161caab2be96f67d8ca9acaa47f7 (diff)
Made spdlog a proper git submodule and upgraded to the latest version.
The latest version fo spdlog does not provide the streaming interface any more, so the macro definition of LOG and calls to it were adjusted accordingly.
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index c4b5fa1a..bfc121d5 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,11 @@ Requirements:
Compilation with `cmake > 3.5`:
- mkdir build
- cd build
- cmake ..
- make -j
+```
+git submodule init
+git submodule update
+mkdir build
+cd build
+cmake ..
+make -j
+``` \ No newline at end of file