We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 386bebb commit 2b3d6f6Copy full SHA for 2b3d6f6
1 file changed
README.md
@@ -120,6 +120,19 @@ While in the project repository, do the following:
120
mkdir build
121
cd build
122
cmake ..
123
+make
124
+make test
125
+```
126
+
127
+CMake will build a library. By default, it builds a shared library (e.g., libsimdjson.so on Linux).
128
129
+You can build a static library:
130
131
132
+mkdir buildstatic
133
+cd buildstatic
134
+cmake -DSIMDJSON_BUILD_STATIC=ON ..
135
136
make test
137
```
138
0 commit comments