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!