@cpp.js/package-sqlite3 1.0.0-beta.23 → 1.0.0-beta.25

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 ADDED
@@ -0,0 +1,9 @@
1
+ # @cpp.js/package-sqlite3
2
+
3
+ ## 1.0.0-beta.25
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: add initial version of CHANGELOGS files
8
+ - Updated dependencies
9
+ - @cpp.js/package-zlib@1.0.0-beta.29
@@ -3,7 +3,7 @@ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
3
3
 
4
4
  Pod::Spec.new do |s|
5
5
  s.module_name = "sqlite3"
6
- s.name = package["name"]
6
+ s.name = "cppjs-package-sqlite3"
7
7
  s.version = package["nativeVersion"]
8
8
  s.summary = "SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine."
9
9
  s.homepage = "https://www.sqlite.org"
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
  };