From c0abf19f350352d0fe4d866d07070f9cd2a379a5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:47:32 +0000 Subject: [PATCH 1/3] Initial plan From cc172cbae9cec1c87e82403c50cd878fc87c27b9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:50:08 +0000 Subject: [PATCH 2/3] Remove undefined ASAN_RUNTIME_DEP from EXTRA_RUNTIME_DEPS expression Co-authored-by: asn5d <16312669+asn5d@users.noreply.github.com> --- cvutil/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvutil/CMakeLists.txt b/cvutil/CMakeLists.txt index 6247195..9f71b2b 100644 --- a/cvutil/CMakeLists.txt +++ b/cvutil/CMakeLists.txt @@ -255,7 +255,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Windows") -D TARGET_FILE=$ -D INSTALL_BIN=${CMAKE_INSTALL_PREFIX}/$,bin,lib/cvutil> -D SEARCH_DIRS="${RUNTIME_SEARCH_DIRS}" - -D EXTRA_RUNTIME_DEPS="$<$,$>:${MIMALLOC_INSTALL_DIR}/bin/mimalloc.dll;${MIMALLOC_INSTALL_DIR}/bin/mimalloc-redirect.dll>$<$:;${ASAN_RUNTIME_DEP}>" + -D EXTRA_RUNTIME_DEPS="$<$,$>:${MIMALLOC_INSTALL_DIR}/bin/mimalloc.dll;${MIMALLOC_INSTALL_DIR}/bin/mimalloc-redirect.dll>" -D BUILD_CONFIG=$ -D BINARY_DIR=${CMAKE_BINARY_DIR} -P "${CMAKE_CURRENT_SOURCE_DIR}/../CMake/find_runtime_deps.cmake" From 81dd3db13f1cefc19182d13c7631a08a3aa88f4f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 4 Dec 2025 18:38:54 +0000 Subject: [PATCH 3/3] Use $ syntax for EXTRA_RUNTIME_DEPS generator expression Co-authored-by: asn5d <16312669+asn5d@users.noreply.github.com> --- cvutil/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvutil/CMakeLists.txt b/cvutil/CMakeLists.txt index 9f71b2b..c5f0baf 100644 --- a/cvutil/CMakeLists.txt +++ b/cvutil/CMakeLists.txt @@ -255,7 +255,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Windows") -D TARGET_FILE=$ -D INSTALL_BIN=${CMAKE_INSTALL_PREFIX}/$,bin,lib/cvutil> -D SEARCH_DIRS="${RUNTIME_SEARCH_DIRS}" - -D EXTRA_RUNTIME_DEPS="$<$,$>:${MIMALLOC_INSTALL_DIR}/bin/mimalloc.dll;${MIMALLOC_INSTALL_DIR}/bin/mimalloc-redirect.dll>" + -D EXTRA_RUNTIME_DEPS="$,$>,${MIMALLOC_INSTALL_DIR}/bin/mimalloc.dll;${MIMALLOC_INSTALL_DIR}/bin/mimalloc-redirect.dll,>" -D BUILD_CONFIG=$ -D BINARY_DIR=${CMAKE_BINARY_DIR} -P "${CMAKE_CURRENT_SOURCE_DIR}/../CMake/find_runtime_deps.cmake"