mirror of
https://github.com/cmusphinx/sphinxtrain.git
synced 2026-06-16 13:14:30 +00:00
8 lines
294 B
CMake
8 lines
294 B
CMake
# Install a copy of Python modules for use in SphinxTrain scripts
|
|
# (you can also install them separately as a real package)
|
|
install(DIRECTORY cmusphinx
|
|
DESTINATION ${CMAKE_INSTALL_DATADIR}/sphinxtrain/python
|
|
PATTERN __pycache__ EXCLUDE
|
|
PATTERN "*.pyc" EXCLUDE
|
|
PATTERN "*.pyo" EXCLUDE)
|