CMakeLists.txt 818 Bytes
Newer Older
moto's avatar
moto committed
1
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
moto's avatar
moto committed
2

moto's avatar
moto committed
3
4
5
################################################################################
# sox
################################################################################
moto's avatar
moto committed
6
if (BUILD_SOX)
7
  add_subdirectory(sox)
moto's avatar
moto committed
8
endif()
9

moto's avatar
moto committed
10
11
12
13
14
15
16
################################################################################
# kaldi
################################################################################
if (BUILD_KALDI)
  add_subdirectory(kaldi)
endif()

moto's avatar
moto committed
17
18
19
################################################################################
# KenLM
################################################################################
20
if (BUILD_CTC_DECODER)
moto's avatar
moto committed
21
22
23
24
  add_subdirectory(zlib)
  add_subdirectory(bzip2)
  add_subdirectory(lzma)
  add_subdirectory(kenlm)
moto's avatar
moto committed
25
  add_subdirectory(flashlight-text)
moto's avatar
moto committed
26
endif()