Skip to content

Commit

Permalink
1705676686
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed Jan 19, 2024
1 parent f04b3dd commit 9611f38
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 @@ -13,7 +13,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=617', '-DLIBPLZMA_NO_C_BINDINGS=1'
s.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=624', '-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 @@ -15,7 +15,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=617'
libplzma.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=624'
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: "617")
.define("LIBPLZMA_VERSION_BUILD", to: "624")
],
cxxSettings: [
.define("LIBPLZMA_VERSION_BUILD", to: "617")
.define("LIBPLZMA_VERSION_BUILD", to: "624")
]
),
.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=617 \
-DLIBPLZMA_VERSION_BUILD=624 \
-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=617',
'LIBPLZMA_VERSION_BUILD=624',
'LIBPLZMA_SHARED=1',
'LIBPLZMA_NO_C_BINDINGS=1',
'LIBPLZMA_HAVE_STD=1'
Expand Down

0 comments on commit 9611f38

Please sign in to comment.