Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LZMA Or 7zip in Delphi

Tags:

delphi

7zip

lzma

Is there any Library in Delphi to handle LZMA (or 7zip)files including creating self extracting EXEs

There are some sources code at 7zip.orgin (c++ java c#) but i want them in delphi

BUT i want something which is stand alone (No DLLs)

like image 397
VibeeshanRC Avatar asked Dec 17 '22 19:12

VibeeshanRC


1 Answers

there are two solutions:

1) use the into native pascal translated sdk:

Pascal LZMA SDK

Source Download

2) you can compile the c version of the sdk into obj files and link them to your delphi project. this one requires a translation of the header files to delphi and it requires lots of c knowledge.

LZMA SDK

like image 80
coding Bott Avatar answered Mar 09 '23 17:03

coding Bott