I am trying to replace the usage of 7zip in my QT Xcode project. Currently the files are archived using a password and my project on Windows uses 7z when accessing automatically opens the file. I have found p7zip to be the port of 7zip for linux/mac The objectives are:
- Open existing 7zip archived files with password
- Save stream with password as a single file.
I built with the following commands
$cd path/to/p7zip
$cp makefile.macosx_64bits makefile.machine
$make 7z
It built without any errors but I am not able to find *.a or *.dylib files. Instead I find the following in the bin folder
- 7z
- 7z.so
- Codecs
Codecs has Rar.so
That is a linux lib file isn't it?
I am very new to the Mac dev, so any help or suggestion would be helpful. I am not able to find an example program too.