@cpp.js/package-expat 1.0.0-beta.22 → 1.0.0
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/CHANGELOG.md +13 -0
- package/README.md +1 -1
- package/cppjs.build.js +1 -0
- package/dist/prebuilt/Android-x86_64/include/expat.h +1077 -0
- package/dist/prebuilt/Android-x86_64/include/expat_config.h +143 -0
- package/dist/prebuilt/Android-x86_64/include/expat_external.h +165 -0
- package/dist/prebuilt/Android-x86_64/lib/cmake/expat-2.6.4/expat-config-version.cmake +65 -0
- package/dist/prebuilt/Android-x86_64/lib/cmake/expat-2.6.4/expat-config.cmake +99 -0
- package/dist/prebuilt/Android-x86_64/lib/cmake/expat-2.6.4/expat-noconfig.cmake +19 -0
- package/dist/prebuilt/Android-x86_64/lib/cmake/expat-2.6.4/expat.cmake +107 -0
- package/dist/prebuilt/Android-x86_64/lib/libexpat.la +41 -0
- package/dist/prebuilt/Android-x86_64/lib/libexpat.so +0 -0
- package/dist/prebuilt/Android-x86_64/lib/pkgconfig/expat.pc +13 -0
- package/dist/prebuilt/Android-x86_64/share/doc/expat/AUTHORS +10 -0
- package/dist/prebuilt/Android-x86_64/share/doc/expat/changelog +1553 -0
- package/dist/prebuilt/iOS-iphoneos/lib/libexpat.a +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/libexpat.a +0 -0
- package/expat.xcframework/Info.plist +5 -5
- package/expat.xcframework/ios-arm64_arm64e/libexpat.a +0 -0
- package/expat.xcframework/ios-arm64_arm64e_x86_64-simulator/libexpat.a +0 -0
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ std::string Native::sample() {
|
|
|
47
47
|
## License
|
|
48
48
|
This project includes the precompiled expat library, which is distributed under the [MIT License](https://github.com/libexpat/libexpat/blob/master/COPYING).
|
|
49
49
|
|
|
50
|
-
Expat Homepage:
|
|
50
|
+
Expat Homepage: [https://github.com/libexpat/libexpat](https://github.com/libexpat/libexpat)
|
package/cppjs.build.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const platformBuild = {
|
|
2
2
|
'Emscripten-x86_64': ['--enable-shared=no', '--host=wasm32-unknown-emscripten'],
|
|
3
3
|
'Android-arm64-v8a': ['--enable-static=no', '--host=aarch64-linux-android'],
|
|
4
|
+
'Android-x86_64': ['--enable-static=no', '--host=x86_64-linux-android'],
|
|
4
5
|
'iOS-iphoneos': ['--enable-shared=no', '--host=arm-apple-darwin'],
|
|
5
6
|
'iOS-iphonesimulator': ['--enable-shared=no', '--host=x86_64-apple-darwin'],
|
|
6
7
|
};
|