The following projects are included with the lz5 distribution:
VS2010- Visual Studio 2010 project (which also works well with Visual Studio 2012, 2013, 2015)
- Install Visual Studio e.g. VS 2015 Community Edition (it's free).
- Download the latest version of lz5 from https://github.com/inikep/lz5/releases
- Decompress ZIP archive.
- Go to decompressed directory then to
visualthenVS2010and openlz5.sln - Visual Studio will ask about converting VS2010 project to VS2015 and you should agree.
- Change
DebugtoReleaseand if you have 64-bit Windows change alsoWin32tox64. - Press F7 on keyboard or select
BUILDfrom the menu bar and chooseBuild Solution. - If compilation will be fine a compiled executable will be in
visual\VS2010\bin\x64_Release\lz5.exe
The Visual Studio solution file lz5.sln contains many projects that will be compiled to the
visual\VS2010\bin\$(Platform)_$(Configuration) directory. For example lz5 set to x64 and
Release will be compiled to visual\VS2010\bin\x64_Release\lz5.exe. The solution file contains the
following projects:
lz5: Command Line Utility, supporting gzip-like argumentsdatagen: Synthetic and parametrable data generator, for testsframetest: Test tool that checks lz5frame integrity on target platformfullbench: Precisely measure speed for each lz5 inner functionsfuzzer: Test tool, to check lz5 integrity on target platformliblz5: A static LZ5 library compiled toliblz5_static.libliblz5-dll: A dynamic LZ5 library (DLL) compiled toliblz5.dllwith the import libraryliblz5.libfullbench-dll: The fullbench program compiled with the import library; the executable requires LZ5 DLL
The header files lib\lz5.h, lib\lz5hc.h, lib\lz5frame.h and the import library
visual\VS2010\bin\$(Platform)_$(Configuration)\liblz5.lib are required to compile a
project using Visual C++.
- The path to header files should be added to
Additional Include Directoriesthat can be found in Project Properties of Visual Studio IDE in theC/C++Property Pages on theGeneralpage. - The import library has to be added to
Additional Dependenciesthat can be found in Project Properties in theLinkerProperty Pages on theInputpage. If one will provide only the nameliblz5.libwithout a full path to the library then the directory has to be added toLinker\General\Additional Library Directories.
The compiled executable will require LZ5 DLL which is available at
visual\VS2010\bin\$(Platform)_$(Configuration)\liblz5.dll.