You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITSML has many object and compiling this step can take a little longer ~ 40 minutes
29
+
30
+
You need compiling this step once
31
+
32
+
# Building libraries
33
+
34
+
## Build C example code
35
+
36
+
```sh
37
+
make clean && make -j4
38
+
```
39
+
40
+
## Build Python module
41
+
42
+
```sh
43
+
make clean && make -j4 py
44
+
```
45
+
46
+
## Build NodeJS library
47
+
48
+
```sh
49
+
make clean && make -j4 nodejs
50
+
```
51
+
52
+
## Build Java library
53
+
54
+
```sh
55
+
make clean && make -j4 jni
56
+
```
57
+
58
+
# Cleaning
59
+
60
+
## Cleaning project
61
+
62
+
```sh
63
+
make clean
64
+
```
65
+
66
+
## Removing WITSML pre compiled objects
67
+
68
+
```sh
69
+
make pre_remove
70
+
```
71
+
72
+
## Removing Mongo C BSON library
73
+
74
+
```sh
75
+
make remove_bson
76
+
```
77
+
78
+
# LICENSES
79
+
80
+
This project is fully open source (MIT) **BUT** it depends on gSoap library that is GPLv2. See [Genivia website](https://www.genivia.com/products.html)
0 commit comments