mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
6df988ccef
CMake is now the preferred build file generator when building with MSVC.
43 lines
1.3 KiB
Text
43 lines
1.3 KiB
Text
|
|
Building XZ Utils with Microsoft Visual Studio
|
|
==============================================
|
|
|
|
Introduction
|
|
------------
|
|
|
|
liblzma got MSVC support in XZ Utils 5.2.0, and the xz and xzdec
|
|
command line tools in XZ Utils 5.6.0.
|
|
|
|
Note: xz and xzdec depend on the the included GNU getopt
|
|
which is licensed under the GNU LGPLv2.1.
|
|
|
|
MSVC 2013 update 2 and later have enough C99 support to build
|
|
liblzma from XZ Utils 5.2.0 and later without modifications.
|
|
|
|
Visual Studio 2015 or later is required to build the command line
|
|
tools.
|
|
|
|
|
|
Building
|
|
--------
|
|
|
|
It is recommended to use CMake to generate build files for MSVC.
|
|
Visual Studio project files are no longer provided (XZ Utils 5.4.x
|
|
were the last versions to include the project files).
|
|
|
|
CMake-based build includes tests for liblzma but not for the
|
|
command line tools.
|
|
|
|
|
|
Notes
|
|
-----
|
|
|
|
liblzma API headers declare the functions with __declspec(dllimport)
|
|
by default. To avoid this when using static liblzma from your code,
|
|
#define LZMA_API_STATIC before #including <lzma.h>.
|
|
|
|
MSVC gives a bunch of compiler warnings. Some warnings are specific
|
|
to 32-bit or 64-bit build and some appear for both builds. These
|
|
are known and shouldn't be a problem. Some of them will probably
|
|
be fixed in the future.
|
|
|