vcpkg/ports/liblzma/win_output_name.patch
Alexander Neumann eb895b95aa
[liblzma] use upstream CMakeLists.txt + Add pkgconfig. (#14615)
* [liblzma] use upstream CMakeLists.txt + Add pkgconfig.

* fixing regressions

* add debug suffix. fix pkgconfig

* fix cmake path

* remove empty lines

* fix wrapper

* more fixes

* fix findLibLZMA

* fix patch for static builds
2020-11-20 12:23:19 -08:00

18 lines
607 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 120dc7548..728ca3591 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -398,11 +398,12 @@ else()
endif()
if(WIN32)
+ set_target_properties(liblzma PROPERTIES OUTPUT_NAME lzma)
if(BUILD_SHARED_LIBS)
# Add the Windows resource file for liblzma.dll.
target_sources(liblzma PRIVATE src/liblzma/liblzma_w32res.rc)
target_include_directories(liblzma PRIVATE windows/vs2019)
# Export the public API symbols with __declspec(dllexport).
target_compile_definitions(liblzma PRIVATE DLL_EXPORT)
else()