@op-engineering/op-sqlite 10.0.0-tokenizers-beta3 → 10.0.0-tokenizers-beta5
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/op-sqlite.podspec +2 -2
- package/package.json +1 -1
package/op-sqlite.podspec
CHANGED
|
@@ -83,7 +83,7 @@ Pod::Spec.new do |s|
|
|
|
83
83
|
|
|
84
84
|
# Set the path to the `c_sources` directory based on environment
|
|
85
85
|
if is_user_app
|
|
86
|
-
c_sources_dir = File.join("..", "..", "..", "c_sources")
|
|
86
|
+
c_sources_dir = File.join("..", "..", "..", "..", "c_sources")
|
|
87
87
|
else
|
|
88
88
|
c_sources_dir = File.join("example", "c_sources")
|
|
89
89
|
end
|
|
@@ -187,7 +187,7 @@ Pod::Spec.new do |s|
|
|
|
187
187
|
if tokenizers.any? then
|
|
188
188
|
log_message.call("[OP_SQLITE] Tokenizers enabled: #{tokenizers}")
|
|
189
189
|
if is_user_app then
|
|
190
|
-
other_cflags += " -DTOKENIZERS_HEADER_PATH=\\\"
|
|
190
|
+
other_cflags += " -DTOKENIZERS_HEADER_PATH=\\\"../../../../c_sources/tokenizers.h\\\""
|
|
191
191
|
else
|
|
192
192
|
other_cflags += " -DTOKENIZERS_HEADER_PATH=\\\"../example/c_sources/tokenizers.h\\\""
|
|
193
193
|
end
|
package/package.json
CHANGED