From 2e0b2086586212a2c04b5eb612a85796be1494f7 Mon Sep 17 00:00:00 2001
From: Dr. Artificial曾小健 <875100501@qq.com>
Date: 星期二, 24 十二月 2024 13:46:31 +0800
Subject: [PATCH] typo fix (#2330)

---
 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