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

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-04-21 12:59:37 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-04-21 12:59:37 +0300
commit4441633ac61b3a43e69888e3217ecbaea9961d9b (patch)
treeff2b3ed0d48e3d45608a143b6119774e82e1f9a8 /Build.md
parent95e5abf9e3b6f9f598729328fb28df7627356b25 (diff)
parent18e9135e121db97f2893c14894161068a6335033 (diff)
Merge remote-tracking branch 'remotes/origin/develop' into resumable_io_branch_merge
Diffstat (limited to 'Build.md')
-rw-r--r--Build.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/Build.md b/Build.md
index 4b2b0ea5..432fc952 100644
--- a/Build.md
+++ b/Build.md
@@ -128,4 +128,10 @@ ctest -C Release -R llfio_dl
## Installing libraries from source
-It all works as per standard with cmake, a `make install` with the usual options and environment variables.
+~~~
+mkdir build
+cd build
+cmake ..
+cmake --build . -- _dl _sl _hl
+cmake --build . --target install
+~~~