Skip to content

Commit

Permalink
fix header files
Browse files Browse the repository at this point in the history
  • Loading branch information
ieow committed Apr 11, 2024
1 parent 111155a commit 316e771
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion curveSecp256k1.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ Pod::Spec.new do |spec|
spec.module_name = "curveSecp256k1"
spec.source = { :git => "https://github.com/tkey/curvelib.swift.git", :tag => spec.version }

spec.source_files = 'Sources/curvelib/secp256k1/**/*.{swift}'
spec.source_files = 'Sources/curvelib/secp256k1/**/*.{swift}', 'Sources/curve_secp256k1/include/*.h'

spec.public_header_files = 'Sources/curve_secp256k1/include/*.h'
spec.dependency 'curvelib_xc'
spec.dependency 'curvelibCommon'
end
Expand Down
2 changes: 1 addition & 1 deletion curvelib_xc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.13'

spec.source_files = 'Sources/curve_secp256k1/**/*.{h,c}'
# spec.public_header_files = 'Sources/curve_secp256k1/include/*.h'
spec.public_header_files = 'Sources/curve_secp256k1/include/*.h'

end

0 comments on commit 316e771

Please sign in to comment.