Skip to content

Commit

Permalink
feat: 语音转换
Browse files Browse the repository at this point in the history
  • Loading branch information
ttttupup committed Dec 26, 2023
1 parent 1207eb6 commit 28db38b
Show file tree
Hide file tree
Showing 14 changed files with 5,613 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ cmake_minimum_required(VERSION 3.10...3.27)
add_subdirectory(base64)
add_subdirectory(lz4)
add_subdirectory(mongoose)
add_subdirectory(spdlog)
add_subdirectory(spdlog)
add_subdirectory(tinyxml2)
15 changes: 15 additions & 0 deletions app/3rdparty/tinyxml2/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.10...3.27)
aux_source_directory(. TINYXML2_SOURCE)


set(CMAKE_CXX_VISIBILITY_PRESET hidden)
set(CMAKE_VISIBILITY_INLINES_HIDDEN YES)

#add_library(tinyxml2 tinyxml2.cpp tinyxml2.h)


add_library(tinyxml2 ${TINYXML2_SOURCE})
add_library(tinyxml2::tinyxml2 ALIAS tinyxml2)


target_include_directories(tinyxml2 INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
Loading

0 comments on commit 28db38b

Please sign in to comment.