CMakeLists.txt 919 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
file(MAKE_DIRECTORY install/include)
file(MAKE_DIRECTORY install/lib)

moto's avatar
moto committed
6
7
8
################################################################################
# sox
################################################################################
moto's avatar
moto committed
9
if (BUILD_SOX)
10
  add_subdirectory(sox)
moto's avatar
moto committed
11
endif()
12

moto's avatar
moto committed
13
14
15
16
17
18
19
################################################################################
# kaldi
################################################################################
if (BUILD_KALDI)
  add_subdirectory(kaldi)
endif()

moto's avatar
moto committed
20
################################################################################
moto's avatar
moto committed
21
# Decoder
moto's avatar
moto committed
22
################################################################################
23
if (BUILD_CTC_DECODER)
moto's avatar
moto committed
24
25
  add_subdirectory(zlib)
  add_subdirectory(bzip2)
moto's avatar
moto committed
26
27
28
  if (NOT MSVC)
    add_subdirectory(lzma)
  endif()
moto's avatar
moto committed
29
  add_subdirectory(kenlm)
moto's avatar
moto committed
30
  add_subdirectory(flashlight-text)
moto's avatar
moto committed
31
endif()