Skip to content

Commit

Permalink
Enabling RAR5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mlabenski committed Jun 19, 2019
1 parent 3b2f874 commit 4a2154e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
6 changes: 6 additions & 0 deletions lib7z/p7zip/makefile.list
Original file line number Diff line number Diff line change
Expand Up @@ -274,4 +274,10 @@ PropVariantConv.o \
TimeUtils.o \
myAddExeFlag.o \
mySplitCommandLine.o \
Rar1Decoder.o \
Rar2Decoder.o \
Rar3Decoder.o \
Rar3Vm.o \
Rar5Decoder.o \
RarCodecsRegister.o \

13 changes: 12 additions & 1 deletion lib7z/p7zip/makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -553,4 +553,15 @@ myAddExeFlag.o : $(P7ZIP_PATH)/CPP/myWindows/myAddExeFlag.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/myWindows/myAddExeFlag.cpp
mySplitCommandLine.o : $(P7ZIP_PATH)/CPP/myWindows/mySplitCommandLine.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/myWindows/mySplitCommandLine.cpp

Rar1Decoder.o : $(P7ZIP_PATH)/CPP/7zip/Compress/Rar1Decoder.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/7zip/Compress/Rar1Decoder.cpp
Rar2Decoder.o : $(P7ZIP_PATH)/CPP/7zip/Compress/Rar2Decoder.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/7zip/Compress/Rar2Decoder.cpp
Rar3Decoder.o : $(P7ZIP_PATH)/CPP/7zip/Compress/Rar3Decoder.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/7zip/Compress/Rar3Decoder.cpp
Rar3Vm.o : $(P7ZIP_PATH)/CPP/7zip/Compress/Rar3Vm.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/7zip/Compress/Rar3Vm.cpp
Rar5Decoder.o : $(P7ZIP_PATH)/CPP/7zip/Compress/Rar5Decoder.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/7zip/Compress/Rar5Decoder.cpp
RarCodecsRegister.o : $(P7ZIP_PATH)/CPP/7zip/Compress/RarCodecsRegister.cpp
$(CXX) $(CXXFLAGS) $(P7ZIP_PATH)/CPP/7zip/Compress/RarCodecsRegister.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
<key>orderHint</key>
<integer>2</integer>
</dict>
<key>lib7z_unittest.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>3</integer>
</dict>
<key>m7z.xcscheme</key>
<dict>
<key>orderHint</key>
Expand Down
4 changes: 2 additions & 2 deletions m7z/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>16.02.R2</string>
<string>16.02.R3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 MPL. All rights reserved.</string>
<string>Copyright © 2017-2019 MPL. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit 4a2154e

Please sign in to comment.