kongdeqiang
5 天以前 28ccfbfc51068a663a80764e14074df5edf2b5ba
runtime/onnxruntime/CMakeLists.txt
@@ -4,6 +4,7 @@
option(ENABLE_GLOG "Whether to build glog" ON)
option(ENABLE_FST "Whether to build openfst" ON) # ITN need openfst compiled
option(GPU "Whether to build with GPU" OFF)
# set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 14 CACHE STRING "The C++ version to be used.")
@@ -18,14 +19,25 @@
    message("Little endian system")
endif()
# json
include(FetchContent)
if(NOT EXISTS ${PROJECT_SOURCE_DIR}/third_party/json/ChangeLog.md )
FetchContent_Declare(json
  URL   https://github.com/nlohmann/json/archive/refs/tags/v3.11.2.tar.gz
SOURCE_DIR ${PROJECT_SOURCE_DIR}/third_party/json
)
FetchContent_MakeAvailable(json)
endif()
# for onnxruntime
IF(WIN32)
#    file(REMOVE ${PROJECT_SOURCE_DIR}/third_party/glog/src/config.h
#                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/export.h
#                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/logging.h
#                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/raw_logging.h
#                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/stl_logging.h
#                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/vlog_is_on.h)
    file(REMOVE ${PROJECT_SOURCE_DIR}/third_party/glog/src/config.h
                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/export.h
                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/logging.h
                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/raw_logging.h
                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/stl_logging.h
                ${PROJECT_SOURCE_DIR}/third_party/glog/src/glog/vlog_is_on.h)
ELSE()
    link_directories(${ONNXRUNTIME_DIR}/lib)
    link_directories(${FFMPEG_DIR}/lib)
@@ -36,6 +48,18 @@
include_directories(${PROJECT_SOURCE_DIR}/third_party/jieba/include)
include_directories(${PROJECT_SOURCE_DIR}/third_party/jieba/include/limonp/include)
include_directories(${PROJECT_SOURCE_DIR}/third_party/kaldi)
include_directories(${PROJECT_SOURCE_DIR}/third_party/json/include)
if(GPU)
    add_definitions(-DUSE_GPU)
    set(TORCH_DIR "/usr/local/lib/python3.8/dist-packages/torch")
    set(TORCH_BLADE_DIR "/usr/local/lib/python3.8/dist-packages/torch_blade")
    include_directories(${TORCH_DIR}/include)
    include_directories(${TORCH_DIR}/include/torch/csrc/api/include)
    link_directories(${TORCH_DIR}/lib)
    link_directories(${TORCH_BLADE_DIR})
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -D_GLIBCXX_USE_CXX11_ABI=0")
endif()
if(ENABLE_GLOG)
    include_directories(${PROJECT_SOURCE_DIR}/third_party/glog/src)
@@ -55,7 +79,10 @@
    # with some patch to fix the make errors. 
    add_subdirectory(third_party/openfst)
    include_directories(${openfst_SOURCE_DIR}/src/include)
    if(WIN32)
    include_directories(${openfst_SOURCE_DIR}/src/lib)
    endif()
endif()
add_subdirectory(third_party/yaml-cpp)