调整中性版本打包编译

This commit is contained in:
yangjiaxuan 2023-08-04 14:12:22 +08:00
parent aad86530fd
commit 3dcbd296b2
4 changed files with 16 additions and 8 deletions

View File

@ -44,7 +44,8 @@ if "%OEM%" equ "cts" (
)
if "%OEM%" equ "neu" (
set OEM_DIR=neutral
set CL=/DOEM_NEUTRAL /DBACKEND_NAME=hgsane
set CL=/DOEM_NEUTRAL /DBACKEND_NAME=neusane
goto oem
)
if "%OEM%" equ "dl" (

View File

@ -1,5 +1,5 @@
@echo off
echo "Parameter 1:hg | lsc| hw | zj | cts | zg | dl"
echo "Parameter 1:hg | lsc| hw | zj | cts | zg | neu | dl"
echo "Parameter 2:x86 | x64 "
echo "Parameter 3: 100 | 200 ... "

Binary file not shown.

View File

@ -1081,6 +1081,9 @@ namespace rc
{
prev = L"_zgsane_";
if (cont.find(prev) == std::wstring::npos)
{
prev = L"_neusane_";
if (cont.find(prev) == std::wstring::npos)
{
prev = L"_dlsane_";
if (cont.find(prev) == std::wstring::npos)
@ -1088,13 +1091,13 @@ namespace rc
return false;
}
}
}
}
}
}
}
}
}
}
size_t pos = cont.find(prev);
while (pos != std::wstring::npos)
@ -1144,6 +1147,9 @@ namespace rc
{
prev = L"zg_scanner_";
if (cont.find(prev) == std::wstring::npos)
{
prev = L"neu_scanner_";
if (cont.find(prev) == std::wstring::npos)
{
prev = L"dl_scanner_";
if (cont.find(prev) == std::wstring::npos)
@ -1155,6 +1161,7 @@ namespace rc
}
}
}
}
size_t pos = cont.find(prev);
while (pos != std::wstring::npos)