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
The `build_cli.sh` script is used to build executables for Linux and Windows.
149
+
The `make build_cli` script is used to build executables for Linux and Windows.
135
150
136
151
**JavaScript**
137
152
138
-
You can compile GSS to pure JavaScript with the `scripts/build_javascript.sh` script.
153
+
You can compile GSS to pure JavaScript with the `make build_javascript` script.
139
154
140
155
**Android**
141
156
142
-
The `build_android.sh` script is used to build an [Android Archive](https://developer.android.com/studio/projects/android-library) (AAR) file and associated Javadocs.
157
+
The `make build_android` script is used to build an [Android Archive](https://developer.android.com/studio/projects/android-library) (AAR) file and associated Javadocs.
143
158
144
159
**Shared Object**
145
160
146
-
The `build_so.sh` script is used to build a Shared Object (`*.go`), which can be called by `C`, `C++`, and `Python` on Linux machines.
161
+
The `make build_so` script is used to build a Shared Object (`*.go`), which can be called by `C`, `C++`, and `Python` on Linux machines.
147
162
148
163
**Changing Destination**
149
164
150
-
The default destination for build artifacts is `go-simple-serializer/bin`, but you can change the destination with a CLI argument. For building on a Chromebook consider saving the artifacts in `/usr/local/go/bin`, e.g., `bash scripts/build_cli.sh /usr/local/go/bin`
165
+
The default destination for build artifacts is `go-simple-serializer/bin`, but you can change the destination with an environment variable. For building on a Chromebook consider saving the artifacts in `/usr/local/go/bin`, e.g., `DEST=/usr/local/go/bin make build_cli`
0 commit comments