Separate axTLS into a separate submodule

This commit is contained in:
Joshua Granick
2017-11-06 14:00:10 -08:00
parent 9fed583269
commit 533483c11b
5 changed files with 12 additions and 2 deletions

3
.gitmodules vendored
View File

@@ -52,3 +52,6 @@
[submodule "project/lib/webm"]
path = project/lib/webm
url = https://github.com/native-toolkit/webm
[submodule "project/lib/axtls"]
path = project/lib/axtls
url = https://github.com/native-toolkit/axtls

View File

@@ -4,6 +4,9 @@ Notices
### Lime
Copyright (c) 2013-2017 Joshua Granick and other Lime contributors
This product bundles axTLS 1.4.9, which is available under a
"BSD" license. For details, see [project/lib/axtls/](project/lib).
This product bundles cairo 1.15.2, which is available under an
"MPL 1.1" license. For details, see [project/lib/cairo/](project/lib).

View File

@@ -9,6 +9,7 @@
<set name="ios" value="1" if="iphone" />
<set name="tvos" value="1" if="appletv" />
<set name="LIME_AXTLS" value="1" unless="emscripten" />
<set name="LIME_CAIRO" value="1" />
<set name="LIME_CURL" value="1" unless="emscripten" />
<set name="LIME_EFSW" value="1" if="windows || mac || linux" />
@@ -36,10 +37,10 @@
<set name="OUTPUT_DIR" value="../ndll" unless="OUTPUT_DIR" />
<set name="NATIVE_TOOLKIT_PATH" value="lib" unless="NATIVE_TOOLKIT_PATH" />
<set name="NATIVE_TOOLKIT_HAVE_AXTLS" value="1" if="LIME_AXTLS" />
<set name="NATIVE_TOOLKIT_HAVE_HARFBUZZ" value="1" if="LIME_HARFBUZZ" />
<set name="NATIVE_TOOLKIT_HAVE_PNG" value="1" if="LIME_PNG" />
<set name="NATIVE_TOOLKIT_CURL_SSL" value="1" />
<set name="NATIVE_TOOLKIT_CURL_DISABLE_AXTLS_NONBLOCKING" value="1" />
<set name="NATIVE_TOOLKIT_SDL_STATIC" value="1" />
@@ -291,6 +292,7 @@
</files>
<include name="lib/axtls/files.xml" />
<include name="lib/cairo/files.xml" />
<include name="lib/curl/files.xml" />
<include name="lib/efsw/files.xml" />
@@ -320,6 +322,7 @@
<files id="lime" />
<files id="native-toolkit-axtls" if="LIME_AXTLS" />
<files id="native-toolkit-cairo" if="LIME_CAIRO" />
<files id="native-toolkit-curl" if="LIME_CURL" />
<files id="native-toolkit-efsw" if="LIME_EFSW" />

1
project/lib/axtls Submodule

Submodule project/lib/axtls added at 2e7826347a