Skip to content

Commit

Permalink
Compile speech player conditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj committed Nov 27, 2023
1 parent 6bfc5c8 commit 70d9000
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ add_library(espeak-include INTERFACE)
target_include_directories(espeak-include INTERFACE include include/compat)

add_subdirectory(ucd-tools)
add_subdirectory(speechPlayer)
if(USE_SPEECHPLAYER)
add_subdirectory(speechPlayer)
endif()
add_subdirectory(libespeak-ng)

if(BUILD_ESPEAK_NG_EXE)
Expand Down

0 comments on commit 70d9000

Please sign in to comment.