We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see code in getLibsFactory.js:
function getLibNameRegex(opencvModuleName) { return new RegExp("^" getLibPrefix() opencvModuleName "[0-9]{0,3}." getLibSuffix() "$"); }
this regex pattern does not match with filename like 'opencv_world3416.lib', please update the code.
The text was updated successfully, but these errors were encountered:
1- this issue is not in the right project. 2- already fixed in the @u4 flavor code extract:
getLibNameRegex(opencvModuleName: string): RegExp { const regexp = `^${this.getLibPrefix}${opencvModuleName}[0-9.]*\.${this.getLibSuffix}$`; return new RegExp(regexp) }
please try the @u4 version and give your feedback so it will be merged into the main git.
thx.
Sorry, something went wrong.
No branches or pull requests
see code in getLibsFactory.js:
this regex pattern does not match with filename like 'opencv_world3416.lib', please update the code.
The text was updated successfully, but these errors were encountered: