From 528f92f7a2a26cade1c57ccf26b0ba6524e7cae5 Mon Sep 17 00:00:00 2001
From: TnR2 <115166373+TnR2@users.noreply.github.com>
Date: 星期三, 01 十月 2025 14:45:17 +0800
Subject: [PATCH] fix: handle empty strings after event removal in transcription processing (def rich_transcription_postprocess(s)) (#2681)
---
runtime/onnxruntime/third_party/openfst/src/lib/CMakeLists.txt | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/runtime/onnxruntime/third_party/openfst/src/lib/CMakeLists.txt b/runtime/onnxruntime/third_party/openfst/src/lib/CMakeLists.txt
index 9960ce9..9097bd8 100644
--- a/runtime/onnxruntime/third_party/openfst/src/lib/CMakeLists.txt
+++ b/runtime/onnxruntime/third_party/openfst/src/lib/CMakeLists.txt
@@ -1,6 +1,20 @@
FILE(GLOB HEADER_FILES ../include/fst/*.h)
-
+if(WIN32)
+add_library(fst STATIC
+ compat.cc
+ flags.cc
+ fst-types.cc
+ fst.cc
+ mapped-file.cc
+ properties.cc
+ symbol-table.cc
+ symbol-table-ops.cc
+ util.cc
+ weight.cc
+ ${HEADER_FILES}
+)
+else()
add_library(fst
compat.cc
flags.cc
@@ -14,6 +28,8 @@
weight.cc
${HEADER_FILES}
)
+endif()
+
set_target_properties(fst PROPERTIES
SOVERSION "${SOVERSION}"
)
--
Gitblit v1.9.1