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 01:28:30 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-04-21 01:28:30 +0300
commit18e9135e121db97f2893c14894161068a6335033 (patch)
tree87f1b652c0f3f7d8f9c611de3666d3450b344314 /Build.md
parenta2fdf1ebc28e9c26d1287d7a7eefecaf678480ce (diff)
Improve support on Windows for working with files on network drives.
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 bd9a3e27..2dbf50c5 100644
--- a/Build.md
+++ b/Build.md
@@ -126,4 +126,10 @@ ctest -C Release -R llfio_dl
## Installing libraries from source
-Installing the libraries from CMake does not currently work right due to unfinished single header generation. It's a TODO/FIXME item.
+~~~
+mkdir build
+cd build
+cmake ..
+cmake --build . -- _dl _sl _hl
+cmake --build . --target install
+~~~