CMakeLists.txt 330 Bytes
Newer Older
moto's avatar
moto committed
1
2
3
4
5
6
7
8
9
10
11
12
set(
  sources
  io.cpp
  utils.cpp
  effects.cpp
  effects_chain.cpp
  types.cpp
  )
torchaudio_library(
  libtorchaudio_sox
  "${sources}"
  ""
13
  "torch;sox"
moto's avatar
moto committed
14
15
16
17
18
19
  ""
  )

if (BUILD_TORCHAUDIO_PYTHON_EXTENSION)
  torchaudio_extension(
    _torchaudio_sox
20
    "pybind/pybind.cpp;"
moto's avatar
moto committed
21
22
23
24
25
    ""
    "libtorchaudio_sox"
    ""
    )
endif()