Skip to content

Commit

Permalink
1721376472
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed Jul 19, 2024
1 parent a84c4e6 commit 7b8b88d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion PLzmaSDK-ObjC.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pod::Spec.new do |s|

s.source_files = 'libplzma.h', 'libplzma.hpp', 'src/**/*.{c,cpp,h,hpp}', 'objc/*.{mm,h,inl}'
s.public_header_files = 'objc/*.h'
s.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=750', '-DLIBPLZMA_NO_C_BINDINGS=1'
s.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=761', '-DLIBPLZMA_NO_C_BINDINGS=1'
s.libraries = 'c++'
s.requires_arc = true

Expand Down
2 changes: 1 addition & 1 deletion PLzmaSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.subspec 'libplzma' do |libplzma|
libplzma.source_files = 'libplzma.h', 'libplzma.hpp', 'src/**/*.{c,cpp,h,hpp}'
libplzma.public_header_files = 'libplzma.h'
libplzma.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=750'
libplzma.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=761'
libplzma.libraries = 'c++'
end

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ let package = Package(
.target(name: "libplzma",
path: "src",
cSettings: [
.define("LIBPLZMA_VERSION_BUILD", to: "750")
.define("LIBPLZMA_VERSION_BUILD", to: "761")
],
cxxSettings: [
.define("LIBPLZMA_VERSION_BUILD", to: "750")
.define("LIBPLZMA_VERSION_BUILD", to: "761")
]
),
.target(name: "PLzmaSDK",
Expand Down
2 changes: 1 addition & 1 deletion android/jni/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ ALL_INCLUDES := $(LOCAL_PATH)/../../../
ALL_CFLAGS := \
-DLIBPLZMA_BUILD=1 \
-DLIBPLZMA_SHARED=1 \
-DLIBPLZMA_VERSION_BUILD=750 \
-DLIBPLZMA_VERSION_BUILD=761 \
-w


Expand Down
2 changes: 1 addition & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
'target_name': 'plzmasdk',
'defines': [
'LIBPLZMA_VERSION_BUILD=750',
'LIBPLZMA_VERSION_BUILD=761',
'LIBPLZMA_SHARED=1',
'LIBPLZMA_NO_C_BINDINGS=1',
'LIBPLZMA_HAVE_STD=1'
Expand Down

0 comments on commit 7b8b88d

Please sign in to comment.