We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e226b commit 5781e0dCopy full SHA for 5781e0d
sw.cpp
@@ -1,6 +1,6 @@
1
void build(Solution &s)
2
{
3
- auto &tess = s.addProject("google.tesseract", "master");
+ auto &tess = s.addProject("google.tesseract", "main");
4
tess += Git("https://github.com/tesseract-ocr/tesseract", "", "{v}");
5
6
auto cppstd = cpp17;
@@ -82,7 +82,13 @@ void build(Solution &s)
82
libtesseract["src/arch/intsimdmatrixavx2.cpp"].args.push_back("-mavx2");
83
}
84
if (!win_or_mingw)
85
+ {
86
libtesseract += "pthread"_slib;
87
+ }
88
+ if (libtesseract.getBuildSettings().TargetOS.Arch == ArchType::aarch64)
89
90
+ libtesseract += "src/arch/dotproductneon.cpp";
91
92
93
libtesseract.Public += "HAVE_CONFIG_H"_d;
94
libtesseract.Public += "_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1"_d;
0 commit comments