aboutsummaryrefslogtreecommitdiff
path: root/windows/vs2019/liblzma_dll.vcxproj (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-08-18Windows: Fix broken liblzma.dll build with Visual Studio project files.Lasse Collin1-0/+6
The bug was introduced in 352ba2d69af2136bc814aa1df1a132559d445616 "Windows: Fix building of resource files when config.h isn't used." That commit fixed liblzma.dll build with CMake while keeping it working with Autotools on Windows but the VS project files were forgotten. I haven't tested these changes. Thanks to Olivier B. for reporting the bug and for the initial patch.
2019-05-01Windows: Upgrade solution with VS2019Julien Marrec1-7/+8
2019-05-01Windows: Duplicate windows/vs2017 before upgradingJulien Marrec1-0/+0
2019-05-01Windows/VS2017: Omit WindowsTargetPlatformVersion from project files.Lasse Collin1-1/+0
I understood that if a WTPV is specified, it's often wrong because different VS installations have different SDK version installed. Omitting the WTPV tag makes VS2017 default to Windows SDK 8.1 which often is also missing, so in any case people may need to specify the WTPV before building. But some day in the future a missing WTPV tag will start to default to the latest installed SDK which sounds reasonable: https://developercommunity.visualstudio.com/content/problem/140294/windowstargetplatformversion-makes-it-impossible-t.html Thanks to "dom".
2018-03-28Windows: Fix paths in VS project files.Lasse Collin1-12/+12
Some paths use slashes instead of backslashes as directory separators... now it should work (I tested VS2013 version).
2018-03-28Windows: Add project files for VS2017.Lasse Collin1-8/+9
These files match the v5.2 branch (no file info decoder).
2018-03-28Windows: Move VS2013 files into windows/vs2013 directory.Lasse Collin1-140/+140
2015-09-25Windows: Define DLL_EXPORT when building liblzma.dll with MSVC.Lasse Collin1-6/+6
src/liblzma/common/common.h uses it to set __declspec(dllexport) for the API symbols. Thanks to Adam Walling.
2015-09-25Windows: Omit unneeded header files from MSVC project files.Lasse Collin1-5/+0
2015-09-25Windows: Add MSVC project files for building liblzma.Lasse Collin1-0/+388
Thanks to Adam Walling for creating these files.