aboutsummaryrefslogtreecommitdiff
path: root/client/libacron/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'client/libacron/README.md')
-rw-r--r--client/libacron/README.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/client/libacron/README.md b/client/libacron/README.md
index 11d7663..8305a5d 100644
--- a/client/libacron/README.md
+++ b/client/libacron/README.md
@@ -23,7 +23,7 @@ cd client/libacron/
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
-make
+cmake --build .
```
The shared library will be at `libac.so`.
@@ -32,6 +32,19 @@ The distributable headers are at `client/libacron/include/`.
To make debug builds, use the Debug build type. Debug builds will have ASAN enabled.
+To build on Windows:
+
+```batch
+git clone https://git.yuuta.moe/Minecraft/acron.git
+CD acron
+git submodule update --init
+CD client/libacron/
+setup.bat
+mkdir build
+cmake -DCMAKE_BUILD_TYPE=Release ..
+cmake --build .
+```
+
## Usage
All functions begin with `ac_`. Include `libac.h`.