aboutsummaryrefslogtreecommitdiff
path: root/client/libacron/README.md
diff options
context:
space:
mode:
authorTrumeet <yuuta@yuuta.moe>2022-07-21 21:50:25 -0700
committerTrumeet <yuuta@yuuta.moe>2022-07-21 21:50:25 -0700
commit33e76233a9dfa2707ed22effb1814a752d52aca5 (patch)
tree09716c39964c7ade945ed5c9a7ebe5dadf121501 /client/libacron/README.md
parent1232b82b1dbb6d9344c1dfa10b4c16d376a40964 (diff)
downloadacron-33e76233a9dfa2707ed22effb1814a752d52aca5.tar
acron-33e76233a9dfa2707ed22effb1814a752d52aca5.tar.gz
acron-33e76233a9dfa2707ed22effb1814a752d52aca5.tar.bz2
acron-33e76233a9dfa2707ed22effb1814a752d52aca5.zip
build(libacron): add install target
Signed-off-by: Trumeet <yuuta@yuuta.moe>
Diffstat (limited to 'client/libacron/README.md')
-rw-r--r--client/libacron/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/libacron/README.md b/client/libacron/README.md
index 5e0f989..240d671 100644
--- a/client/libacron/README.md
+++ b/client/libacron/README.md
@@ -24,11 +24,12 @@ mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
+DESTDIR=$(pwd)/install cmake --install .
```
The shared library will be at `libac.so` (`ac.dll` on Windows). The static library will be at `libac-static.a` (`ac-static.lib` on Windows).
-The distributable headers are at `client/libacron/include/`.
+The distributable headers are at `install/usr/local/include/libac/`.
To make debug builds, use the Debug build type. Debug builds will have ASAN enabled.