In macOS you need to codesign your application.
After running the registration application the new file "wsq_license_64.key" will be created.
You need to copy file "wsq_license_64.key" to the same folder where "libWSQ_library64.so" is located.
Make sure that files "wsq_license_64.key" and "libWSQ_library64.so" are located in the same directory.
After placing new file "wsq_license_64.key" into your application folder, you need to codesign anew your application.

====================================================
For distribution outside App Store:

codesign -f -s "Developer ID Application: Name Surname (1234567890)" -v "wsq_demo.app" --deep


Alternative codesign command:

codesign --force --deep --verbose --sign "Developer ID Application: Name Surname (1234567890)" "wsq_demo.app"
====================================================
How to check codesigning:

spctl --assess --verbose --type execute "wsq_demo.app"


Alternative check codesigning command:

codesign --verify --verbose "wsq_demo.app"
====================================================
