From 706bce5018d7cf83094e13454a0731169ec119b5 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 7 Jan 2023 19:50:03 +0200 Subject: CMake/Windows: Add resource files to xz.exe and xzdec.exe. The command line tools cannot be built with MSVC for now but they can be built with MinGW-w64. Thanks to Iouri Kharon for the bug report and the original patch. --- CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef17563e..33d58a6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -611,6 +611,14 @@ if(HAVE_GETOPT_LONG) target_link_libraries(xzdec PRIVATE liblzma) + if(WIN32) + # Add the Windows resource file for xzdec.exe. + target_sources(xz PRIVATE src/xzdec/xzdec_w32res.rc) + set_target_properties(xz PROPERTIES + LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/common/common_w32res.rc" + ) + endif() + tuklib_progname(xzdec) install(TARGETS xzdec @@ -682,6 +690,14 @@ if(NOT MSVC AND HAVE_GETOPT_LONG) target_compile_definitions(xz PRIVATE ASSUME_RAM=128) + if(WIN32) + # Add the Windows resource file for xz.exe. + target_sources(xz PRIVATE src/xz/xz_w32res.rc) + set_target_properties(xz PROPERTIES + LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/common/common_w32res.rc" + ) + endif() + tuklib_progname(xz) tuklib_mbstr(xz) -- cgit v1.2.3