cmusphinx / pocketsphinx

A small speech recognizer
Other
3.87k stars 713 forks source link

Creating pocketsphinx DLL #367

Closed yuvalkry closed 1 year ago

yuvalkry commented 1 year ago

Hello,

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

Thanks, Yuval

dhdaines commented 1 year ago

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)

yuvalkry commented 1 year ago

Thank you!