sip-lab 1.12.13 → 1.12.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DEV.md +30 -0
- package/README.md +1 -0
- package/package.json +1 -1
package/DEV.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
### For devs
|
|
2
|
+
|
|
3
|
+
We build and statically link to libs pjproject, spandsp, bgc729 and rapidjson.
|
|
4
|
+
|
|
5
|
+
Basic tasks for development:
|
|
6
|
+
|
|
7
|
+
#### To build
|
|
8
|
+
```
|
|
9
|
+
npm install
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
#### To clean up (for a clean rebuild)
|
|
13
|
+
```
|
|
14
|
+
npx node-gyp clean
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
#### To update pjproject, spandsp, bcg729 or rapidjson
|
|
18
|
+
Just delete the corresponding library subfolder in subfolder 3drParty.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Then temporarily change install.sh to not checkout a specific version (or checkout a desired commit)
|
|
22
|
+
|
|
23
|
+
Then run
|
|
24
|
+
```
|
|
25
|
+
npm install
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Then perform code changes and tests. When you are satisfied with them, update install.sh with the new commit id.
|
|
29
|
+
|
|
30
|
+
|
package/README.md
CHANGED