This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/integrations/README.md

39 lines
2.4 KiB
Markdown
Raw Normal View History

2016-06-15 10:22:10 -07:00
ZeroTier Integrations
====
2016-06-27 14:15:58 -07:00
If you want everything built at once, type `make all` and go play outside for a few minutes, we'll copy all of the targets into the `build` directory for you along with specific instructions on how to use each binary. You can then use `make -s check` to check the build status of each binary target.
2016-06-21 16:44:53 -07:00
*NOTE for Apple platforms: In order to build iOS/OSX Frameworks and Bundles you will need XCode command line tools `xcode-select --install`*
2016-06-22 10:03:26 -07:00
2016-06-22 16:01:03 -07:00
*NOTE: For Android JNI libraries to build you'll need to install [Android Studio](https://developer.android.com/studio/index.html) and the [Android NDK](https://developer.android.com/ndk/index.html), and you'll need to tell our project where you put it by putting the path in [this file](Android/proj/local.properties), if you don't have these things installed and configured we will detect that and just skip those builds automatically. Additionally, you can specify the target architectures you want to build in [Application.mk](android/java/jni/Application.mk). By default it will build `arm64-v8a`, `armeabi`, `armeabi-v7a`, `mips`, `mips64`, `x86`, and `x86_64`*
2016-06-21 16:44:53 -07:00
2016-06-22 16:01:03 -07:00
Below are the specific instructions for each integration requiring *little to no modification to your code*. Remember, with a full build we'll put a copy of the appropriate integration instructions in the resultant binary's folder for you anyway.
2016-06-15 10:36:28 -07:00
2016-06-21 16:47:30 -07:00
For more support on these integrations, or if you'd like help creating a new integration, stop by our [community section](https://www.zerotier.com/community/)!
***
## Current Integrations
2016-06-21 12:54:26 -07:00
### Apple
2016-06-21 12:59:44 -07:00
##### iOS
2016-06-22 13:19:01 -07:00
- [Embedding within an app](../docs/ios_zt_sdk.md) `make ios_app_framework`
- [Unity3D plugin](../docs/unity3d_ios_zt_sdk.md) `make ios_unity3d_bundle`
2016-06-21 12:59:44 -07:00
##### OSX
2016-06-22 13:19:01 -07:00
- [Embedding within an app](../docs/osx_zt_sdk.md) `make osx_app_framework`
2016-06-22 14:07:28 -07:00
- [Dynamic-linking into an app/service at runtime](../docs/osx_zt_sdk.md) `make osx_shared_lib`
2016-06-22 13:19:01 -07:00
- [Unity3D plugin](../docs/unity3d_osx_zt_sdk.md) `make osx_unity3d_bundle`
2016-06-21 12:54:26 -07:00
***
### Linux
2016-06-22 13:19:01 -07:00
- [Dynamic-linking into an app/service at runtime](../docs/linux_zt_sdk.md) `make linux_shared_lib`
- [Using the SDK with Docker](../docs/docker_linux_zt_sdk.md) `make linux_shared_lib`
### Android
2016-06-22 13:19:01 -07:00
- [Embedding within an app](../docs/android_zt_sdk.md) `make android_jni_lib`
- [Unity 3D plugin](../docs/unity3d_android_zt_sdk.md) `make android_unity3d_plugin`
2016-06-21 12:54:26 -07:00
***
### Windows
- Anyone want to volunteer?