.. | ||
VS2010 | ||
.gitignore | ||
README.md |
Projects for various integrated development environments (IDE)
Included projects
The following projects are included with the lz4 distribution:
VS2010
- Visual Studio 2010 project (which also works well with Visual Studio 2012, 2013, 2015)
How to compile lz4 with Visual Studio
- Install Visual Studio e.g. VS 2015 Community Edition (it's free).
- Download the latest version of lz4 from https://github.com/lz4/lz4/releases
- Decompress ZIP archive.
- Go to decompressed directory then to
visual
thenVS2010
and openlz4.sln
- Visual Studio will ask about converting VS2010 project to VS2015 and you should agree.
- Change
Debug
toRelease
and if you have 64-bit Windows change alsoWin32
tox64
. - Press F7 on keyboard or select
BUILD
from the menu bar and chooseBuild Solution
. - If compilation will be fine a compiled executable will be in
visual\VS2010\bin\x64_Release\lz4.exe
Projects available within lz4.sln
The Visual Studio solution file lz4.sln
contains many projects that will be compiled to the
visual\VS2010\bin\$(Platform)_$(Configuration)\lz4.exe
directory. For example lz4
set to x64
and
Release
will be compiled to visual\VS2010\bin\x64_Release\lz4.exe
. The solution file contains the
following projects:
lz4
: Command Line Utility, supporting gzip-like argumentsdatagen
: Synthetic and parametrable data generator, for testsframetest
: Test tool that checks lz4frame integrity on target platformfullbench
: Precisely measure speed for each lz4 inner functionsfuzzer
: Test tool, to check lz4 integrity on target platformliblz4
: A static LZ4 library compiled toliblz4_x86.lib
orliblz4_x64.lib
liblz4-dll
: A dynamic LZ4 library (DLL) compiled tolz4_x86.dll
orlz4_x64.dll
with the import librarylz4_x86.lib
orlz4_x64.lib
fullbench-dll
: The fullbench program compiled with the import library; the executable requires LZ4 DLL
Using LZ4 DLL with Microsoft Visual C++ project
- Copy
lz4.h
into a directory found in the INCLUDE path list. - Copy the import library
lz4_x86.lib
orlz4_x64.lib
into a directory found in the LIB path list. - Add
lz4_x86.lib
orlz4_x64.lib
to your project. - Compile the project. The compiled executable requires
lz4_x86.dll
orlz4_x64.dll
.