cmusphinx / pocketsphinx

A small speech recognizer

Repository from Github https://github.comcmusphinx/pocketsphinxRepository from Github https://github.comcmusphinx/pocketsphinx

Creating pocketsphinx DLL

yuvalkry opened this issue · comments

Hello,

The cmake file creates pocketsphinx.lib, what to do in order to create pocketphin.dll?

Thanks,
Yuval

CMake's syntax here leaves a bit to be desired but:

cmake -S. -Bbuild -DBUILD_SHARED_LIBS=yes
cmake --build build

This should be in the README so I'll leave the issue open until I do that (soon)

Thank you!