mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-20017 Fix line endings in Visual Studio *.props files. (#101)
This commit is contained in:
parent
0fa1b5c5eb
commit
2290dba1a4
5 changed files with 442 additions and 442 deletions
2
.gitattributes
vendored
2
.gitattributes
vendored
|
@ -9,7 +9,7 @@
|
|||
# The only difference between the two is that git will do EOL conversion for text files.
|
||||
# "!eol" is the equivalent of "svneol=native".
|
||||
|
||||
*.bat text eol=crlf
|
||||
*.bat text !eol
|
||||
*.c text !eol diff=cpp
|
||||
*.cc text !eol diff=cpp
|
||||
*.classpath text !eol
|
||||
|
|
|
@ -1,129 +1,129 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!-- This file is used to set default configuration options for all non-UWP Visual Studio projects. -->
|
||||
<!-- These are the default project configurations for building. -->
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<!-- This is the version of the MSVC tool-set to use. -->
|
||||
<!-- v140 is the Visual Studio 2015 toolset. -->
|
||||
<!-- v141 is the Visual Studio 2017 toolset. -->
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- This is the default SDK target. -->
|
||||
<!-- Note that the Windows 8.1 SDK is backwards compatible down-level to Windows 7, so
|
||||
setting this to 8.1 does not actually imply targeting Windows 8.1. -->
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- We need to explicitly set the target version to Windows 7. -->
|
||||
<Win32_WinNTVersion>0x0601</Win32_WinNTVersion>
|
||||
</PropertyGroup>
|
||||
<!-- Options that are common to *all* configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup>
|
||||
<Midl>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<!-- Note: These preprocessor defines are for *all* configurations for *all* projects. -->
|
||||
<!-- Note: See ticket #5750 for the macro '_CRT_SECURE_NO_DEPRECATE'. -->
|
||||
<PreprocessorDefinitions>
|
||||
WINVER=$(Win32_WinNTVersion);
|
||||
_WIN32_WINNT=$(Win32_WinNTVersion);
|
||||
_CRT_SECURE_NO_DEPRECATE;
|
||||
%(PreprocessorDefinitions)
|
||||
</PreprocessorDefinitions>
|
||||
<!-- We always want to treat wchar_t as a "real" C++ type, instead of a typedef. -->
|
||||
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<!-- Set the source encoding and runtime encoding to UTF-8 by default. -->
|
||||
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
||||
<!-- Enable parallel compilation for faster builds. -->
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 'Release' configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 'Debug' configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 32-bit configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
|
||||
<Midl>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 64-bit configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
|
||||
<Midl>
|
||||
<TargetEnvironment>X64</TargetEnvironment>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN64;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<TargetMachine>MachineX64</TargetMachine>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!-- This file is used to set default configuration options for all non-UWP Visual Studio projects. -->
|
||||
<!-- These are the default project configurations for building. -->
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<!-- This is the version of the MSVC tool-set to use. -->
|
||||
<!-- v140 is the Visual Studio 2015 toolset. -->
|
||||
<!-- v141 is the Visual Studio 2017 toolset. -->
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- This is the default SDK target. -->
|
||||
<!-- Note that the Windows 8.1 SDK is backwards compatible down-level to Windows 7, so
|
||||
setting this to 8.1 does not actually imply targeting Windows 8.1. -->
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- We need to explicitly set the target version to Windows 7. -->
|
||||
<Win32_WinNTVersion>0x0601</Win32_WinNTVersion>
|
||||
</PropertyGroup>
|
||||
<!-- Options that are common to *all* configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup>
|
||||
<Midl>
|
||||
<MkTypLibCompatible>true</MkTypLibCompatible>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<!-- Note: These preprocessor defines are for *all* configurations for *all* projects. -->
|
||||
<!-- Note: See ticket #5750 for the macro '_CRT_SECURE_NO_DEPRECATE'. -->
|
||||
<PreprocessorDefinitions>
|
||||
WINVER=$(Win32_WinNTVersion);
|
||||
_WIN32_WINNT=$(Win32_WinNTVersion);
|
||||
_CRT_SECURE_NO_DEPRECATE;
|
||||
%(PreprocessorDefinitions)
|
||||
</PreprocessorDefinitions>
|
||||
<!-- We always want to treat wchar_t as a "real" C++ type, instead of a typedef. -->
|
||||
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
<!-- Set the source encoding and runtime encoding to UTF-8 by default. -->
|
||||
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
||||
<!-- Enable parallel compilation for faster builds. -->
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<Culture>0x0409</Culture>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 'Release' configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<StringPooling>true</StringPooling>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 'Debug' configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<BufferSecurityCheck>true</BufferSecurityCheck>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 32-bit configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
|
||||
<Midl>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<!-- Options that are common to all 64-bit configurations for *all* projects. -->
|
||||
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
|
||||
<Midl>
|
||||
<TargetEnvironment>X64</TargetEnvironment>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>WIN64;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<TargetMachine>MachineX64</TargetMachine>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
</Project>
|
|
@ -1,41 +1,41 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!-- This file is used to set common configuration options for all *_uwp projects. -->
|
||||
<PropertyGroup>
|
||||
<!-- If not already set, use this version of the Win10 SDK -->
|
||||
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
|
||||
<!-- If not already set, set the minimum Win10 SDK version to TH1/RTM -->
|
||||
<WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
|
||||
|
||||
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
|
||||
<AppContainerApplication>true</AppContainerApplication>
|
||||
<ApplicationType>Windows Store</ApplicationType>
|
||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- This is the version of the MSVC tool-set to use. -->
|
||||
<!-- v141 is the Visual Studio 2017 toolset. -->
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>
|
||||
%(PreprocessorDefinitions)
|
||||
U_PLATFORM_HAS_WINUWP_API=1;
|
||||
</PreprocessorDefinitions>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>
|
||||
%(PreprocessorDefinitions);
|
||||
U_PLATFORM_HAS_WINUWP_API=1;
|
||||
</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>
|
||||
%(PreprocessorDefinitions)
|
||||
U_PLATFORM_HAS_WINUWP_API=1;
|
||||
</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!-- This file is used to set common configuration options for all *_uwp projects. -->
|
||||
<PropertyGroup>
|
||||
<!-- If not already set, use this version of the Win10 SDK -->
|
||||
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
|
||||
<!-- If not already set, set the minimum Win10 SDK version to TH1/RTM -->
|
||||
<WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
|
||||
|
||||
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
|
||||
<AppContainerApplication>true</AppContainerApplication>
|
||||
<ApplicationType>Windows Store</ApplicationType>
|
||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- This is the version of the MSVC tool-set to use. -->
|
||||
<!-- v141 is the Visual Studio 2017 toolset. -->
|
||||
<PlatformToolset>v141</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup>
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>
|
||||
%(PreprocessorDefinitions)
|
||||
U_PLATFORM_HAS_WINUWP_API=1;
|
||||
</PreprocessorDefinitions>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>
|
||||
%(PreprocessorDefinitions);
|
||||
U_PLATFORM_HAS_WINUWP_API=1;
|
||||
</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>
|
||||
%(PreprocessorDefinitions)
|
||||
U_PLATFORM_HAS_WINUWP_API=1;
|
||||
</PreprocessorDefinitions>
|
||||
</ResourceCompile>
|
||||
</ItemDefinitionGroup>
|
||||
</Project>
|
|
@ -1,27 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
||||
<!--
|
||||
This file is used to copy all of the header files (*.h) from a project's "unicode" folder to a common output folder.
|
||||
-->
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<!-- This is the location of the common output folder. -->
|
||||
<CopyDestionationPath>$(SolutionDir)\..\..\include\unicode</CopyDestionationPath>
|
||||
<BuildDependsOn>
|
||||
$(BuildDependsOn);
|
||||
CopyUnicodeHeaderFiles;
|
||||
</BuildDependsOn>
|
||||
</PropertyGroup>
|
||||
<Target Name="CopyUnicodeHeaderFiles">
|
||||
<ItemGroup>
|
||||
<!-- Generate a list of all files that end in .h from the 'unicode' folder, relative to the current project. -->
|
||||
<OutputFiles Include=".\unicode\**\*.h" />
|
||||
</ItemGroup>
|
||||
<!-- This message will be logged in the project's build output. -->
|
||||
<Message Text="Copying @(OutputFiles->Count()) header files to $(CopyDestionationPath). Files copied: @(OutputFiles)" Importance="high"/>
|
||||
<!-- Perform the copy. -->
|
||||
<Copy SourceFiles="@(OutputFiles)"
|
||||
DestinationFolder="$(CopyDestionationPath)\%(RecursiveDir)"
|
||||
SkipUnchangedFiles="false"></Copy>
|
||||
</Target>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
|
||||
<!--
|
||||
This file is used to copy all of the header files (*.h) from a project's "unicode" folder to a common output folder.
|
||||
-->
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<!-- This is the location of the common output folder. -->
|
||||
<CopyDestionationPath>$(SolutionDir)\..\..\include\unicode</CopyDestionationPath>
|
||||
<BuildDependsOn>
|
||||
$(BuildDependsOn);
|
||||
CopyUnicodeHeaderFiles;
|
||||
</BuildDependsOn>
|
||||
</PropertyGroup>
|
||||
<Target Name="CopyUnicodeHeaderFiles">
|
||||
<ItemGroup>
|
||||
<!-- Generate a list of all files that end in .h from the 'unicode' folder, relative to the current project. -->
|
||||
<OutputFiles Include=".\unicode\**\*.h" />
|
||||
</ItemGroup>
|
||||
<!-- This message will be logged in the project's build output. -->
|
||||
<Message Text="Copying @(OutputFiles->Count()) header files to $(CopyDestionationPath). Files copied: @(OutputFiles)" Importance="high"/>
|
||||
<!-- Perform the copy. -->
|
||||
<Copy SourceFiles="@(OutputFiles)"
|
||||
DestinationFolder="$(CopyDestionationPath)\%(RecursiveDir)"
|
||||
SkipUnchangedFiles="false"></Copy>
|
||||
</Target>
|
||||
</Project>
|
|
@ -1,247 +1,247 @@
|
|||
@echo off
|
||||
REM Copyright (C) 2016 and later: Unicode, Inc. and others.
|
||||
REM License & terms of use: http://www.unicode.org/copyright.html
|
||||
REM ********************************************************************
|
||||
|
||||
REM Don't add additional global environment variables, keep the variables local to this script.
|
||||
rem setlocal
|
||||
|
||||
set ICU_ARCH=%1
|
||||
set ICU_DBRL=%2
|
||||
|
||||
if "%1" == "" (
|
||||
echo Usage: %0 "x86 or x64" "Debug or Release"
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
if "%2" == "" (
|
||||
echo Usage: %0 %1 "Debug or Release"
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
set ICU_ICUDIR="%~dp0"\..\..\..
|
||||
set ICU_SAMPLESDIR=%ICU_ICUDIR%\source\samples
|
||||
|
||||
if "%ICU_ARCH%" == "x64" (
|
||||
set ICU_BINDIR=%~dp0..\..\..\bin64
|
||||
) else (
|
||||
set ICU_BINDIR=%~dp0..\..\..\bin
|
||||
)
|
||||
|
||||
if not exist "%ICU_BINDIR%" (
|
||||
echo Error '%ICU_BINDIR%' does not exist!
|
||||
echo Have you built all of ICU yet ?
|
||||
goto :eof
|
||||
)
|
||||
|
||||
echo Testing ICU samples in %ICU_ICUDIR% arch=%ICU_ARCH% type=%ICU_DBRL%
|
||||
set PATH=%ICU_BINDIR%;%PATH%
|
||||
pushd %ICU_BINDIR%
|
||||
|
||||
set SAMPLE_BREAK=%ICU_SAMPLESDIR%\break\%ICU_ARCH%\%ICU_DBRL%\break.exe
|
||||
set SAMPLE_CAL=%ICU_SAMPLESDIR%\cal\%ICU_ARCH%\%ICU_DBRL%\cal.exe
|
||||
set SAMPLE_CASE=%ICU_SAMPLESDIR%\case\%ICU_ARCH%\%ICU_DBRL%\case.exe
|
||||
set SAMPLE_CITER=%ICU_SAMPLESDIR%\citer\%ICU_ARCH%\%ICU_DBRL%\citer.exe
|
||||
set SAMPLE_COLL=%ICU_SAMPLESDIR%\coll\%ICU_ARCH%\%ICU_DBRL%\coll.exe
|
||||
set SAMPLE_CSDET=%ICU_SAMPLESDIR%\csdet\%ICU_ARCH%\%ICU_DBRL%\csdet.exe
|
||||
set SAMPLE_DATE=%ICU_SAMPLESDIR%\date\%ICU_ARCH%\%ICU_DBRL%\date.exe
|
||||
set SAMPLE_DATEFMT=%ICU_SAMPLESDIR%\datefmt\%ICU_ARCH%\%ICU_DBRL%\datefmt.exe
|
||||
set SAMPLE_DTITVFMT=%ICU_SAMPLESDIR%\dtitvfmtsample\%ICU_ARCH%\%ICU_DBRL%\dtitvfmtsample.exe
|
||||
set SAMPLE_DTPTNG=%ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%\dtptngsample.exe
|
||||
set SAMPLE_MSGFMT=%ICU_SAMPLESDIR%\msgfmt\%ICU_ARCH%\%ICU_DBRL%\msgfmt.exe
|
||||
set SAMPLE_NUMFMT=%ICU_SAMPLESDIR%\numfmt\%ICU_ARCH%\%ICU_DBRL%\numfmt.exe
|
||||
set SAMPLE_PLURFMTSAMPLE=%ICU_SAMPLESDIR%\plurfmtsample\%ICU_ARCH%\%ICU_DBRL%\plurfmtsample.exe
|
||||
set SAMPLE_PROPS=%ICU_SAMPLESDIR%\props\%ICU_ARCH%\%ICU_DBRL%\props.exe
|
||||
set SAMPLE_STRSRCH=%ICU_SAMPLESDIR%\strsrch\%ICU_ARCH%\%ICU_DBRL%\strsrch.exe
|
||||
set SAMPLE_TRANSLIT=%ICU_SAMPLESDIR%\translit\%ICU_ARCH%\%ICU_DBRL%\translit.exe
|
||||
set SAMPLE_UCITER8=%ICU_SAMPLESDIR%\uciter8\%ICU_ARCH%\%ICU_DBRL%\uciter8.exe
|
||||
set SAMPLE_UCNV=%ICU_SAMPLESDIR%\ucnv\%ICU_ARCH%\%ICU_DBRL%\ucnv.exe
|
||||
REM udata needs changes to the vcxproj to change the output locations for writer/reader.
|
||||
rem set SAMPLE_UDATA_WRITER=%ICU_SAMPLESDIR%\udata\%ICU_ARCH%\%ICU_DBRL%\writer.exe
|
||||
rem set SAMPLE_UDATA_READER=%ICU_SAMPLESDIR%\udata\%ICU_ARCH%\%ICU_DBRL%\reader.exe
|
||||
set SAMPLE_UFORTUNE=%ICU_SAMPLESDIR%\ufortune\%ICU_ARCH%\%ICU_DBRL%\ufortune.exe
|
||||
set SAMPLE_UGREP=%ICU_SAMPLESDIR%\ugrep\%ICU_ARCH%\%ICU_DBRL%\ugrep.exe
|
||||
REM There is also the 'resources' project in VS.
|
||||
set SAMPLE_URESB=%ICU_SAMPLESDIR%\uresb\%ICU_ARCH%\%ICU_DBRL%\uresb.exe
|
||||
set SAMPLE_USTRING=%ICU_SAMPLESDIR%\ustring\%ICU_ARCH%\%ICU_DBRL%\ustring.exe
|
||||
|
||||
|
||||
@set THT=break
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_BREAK%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=cal
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CAL%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=case
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CASE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=citer
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CITER%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=coll
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_COLL%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=csdet
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CSDET% %ICU_SAMPLESDIR%\csdet\readme.txt
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=date
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_DATE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=datefmt
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_DATEFMT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=dtitvfmtsample
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_DTITVFMT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=dtptngsample
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%
|
||||
%SAMPLE_DTPTNG%
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=msgfmt
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_MSGFMT% arg1 arg2
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=numfmt
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_NUMFMT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=plurfmtsample
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_PLURFMTSAMPLE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=props
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_PROPS%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=strsrch
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_STRSRCH%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=translit
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_TRANSLIT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=citer8
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_UCITER8%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=ucnv
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\ucnv
|
||||
%SAMPLE_UCNV%
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
REM TODO: udata needs changes to the vcxproj file to fix the output locations for writer/reader.
|
||||
@set THT=udata
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\udata\%ICU_ARCH%\%ICU_DBRL%
|
||||
@echo TODO: udata needs changes to the vcxproj file to fix the output locations for writer/reader.
|
||||
@echo Skipping %THT%
|
||||
rem %SAMPLE_UDATA_WRITER%
|
||||
rem %SAMPLE_UDATA_READER%
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=ufortune
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
if "%ICU_ARCH%" == "x64" (
|
||||
@echo The ufortune sample currently only runs on x86.
|
||||
@echo Skipping %THT%.
|
||||
) else (
|
||||
%SAMPLE_UFORTUNE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
)
|
||||
|
||||
@set THT=ugrep
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
echo Looking for "ICU" in '%ICU_SAMPLESDIR%\ugrep\readme.txt' with ugrep.exe
|
||||
%SAMPLE_UGREP% ICU %ICU_SAMPLESDIR%\ugrep\readme.txt
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=uresb
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\uresb
|
||||
%SAMPLE_URESB% en
|
||||
%SAMPLE_URESB% root
|
||||
%SAMPLE_URESB% sr
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=ustring
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_USTRING%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
|
||||
|
||||
rem All done
|
||||
goto :QuitWithNoError
|
||||
|
||||
:SampleError
|
||||
echo.
|
||||
echo ERROR: Sample program %THT% did not exit cleanly. Stopping execution.
|
||||
echo.
|
||||
goto :QuitWithError
|
||||
|
||||
:QuitWithNoError
|
||||
echo.
|
||||
popd
|
||||
exit /b 0
|
||||
|
||||
:QuitWithError
|
||||
echo.
|
||||
popd
|
||||
rem Exit with non-zero error code.
|
||||
exit /b 1
|
||||
@echo off
|
||||
REM Copyright (C) 2016 and later: Unicode, Inc. and others.
|
||||
REM License & terms of use: http://www.unicode.org/copyright.html
|
||||
REM ********************************************************************
|
||||
|
||||
REM Don't add additional global environment variables, keep the variables local to this script.
|
||||
rem setlocal
|
||||
|
||||
set ICU_ARCH=%1
|
||||
set ICU_DBRL=%2
|
||||
|
||||
if "%1" == "" (
|
||||
echo Usage: %0 "x86 or x64" "Debug or Release"
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
if "%2" == "" (
|
||||
echo Usage: %0 %1 "Debug or Release"
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
set ICU_ICUDIR="%~dp0"\..\..\..
|
||||
set ICU_SAMPLESDIR=%ICU_ICUDIR%\source\samples
|
||||
|
||||
if "%ICU_ARCH%" == "x64" (
|
||||
set ICU_BINDIR=%~dp0..\..\..\bin64
|
||||
) else (
|
||||
set ICU_BINDIR=%~dp0..\..\..\bin
|
||||
)
|
||||
|
||||
if not exist "%ICU_BINDIR%" (
|
||||
echo Error '%ICU_BINDIR%' does not exist!
|
||||
echo Have you built all of ICU yet ?
|
||||
goto :eof
|
||||
)
|
||||
|
||||
echo Testing ICU samples in %ICU_ICUDIR% arch=%ICU_ARCH% type=%ICU_DBRL%
|
||||
set PATH=%ICU_BINDIR%;%PATH%
|
||||
pushd %ICU_BINDIR%
|
||||
|
||||
set SAMPLE_BREAK=%ICU_SAMPLESDIR%\break\%ICU_ARCH%\%ICU_DBRL%\break.exe
|
||||
set SAMPLE_CAL=%ICU_SAMPLESDIR%\cal\%ICU_ARCH%\%ICU_DBRL%\cal.exe
|
||||
set SAMPLE_CASE=%ICU_SAMPLESDIR%\case\%ICU_ARCH%\%ICU_DBRL%\case.exe
|
||||
set SAMPLE_CITER=%ICU_SAMPLESDIR%\citer\%ICU_ARCH%\%ICU_DBRL%\citer.exe
|
||||
set SAMPLE_COLL=%ICU_SAMPLESDIR%\coll\%ICU_ARCH%\%ICU_DBRL%\coll.exe
|
||||
set SAMPLE_CSDET=%ICU_SAMPLESDIR%\csdet\%ICU_ARCH%\%ICU_DBRL%\csdet.exe
|
||||
set SAMPLE_DATE=%ICU_SAMPLESDIR%\date\%ICU_ARCH%\%ICU_DBRL%\date.exe
|
||||
set SAMPLE_DATEFMT=%ICU_SAMPLESDIR%\datefmt\%ICU_ARCH%\%ICU_DBRL%\datefmt.exe
|
||||
set SAMPLE_DTITVFMT=%ICU_SAMPLESDIR%\dtitvfmtsample\%ICU_ARCH%\%ICU_DBRL%\dtitvfmtsample.exe
|
||||
set SAMPLE_DTPTNG=%ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%\dtptngsample.exe
|
||||
set SAMPLE_MSGFMT=%ICU_SAMPLESDIR%\msgfmt\%ICU_ARCH%\%ICU_DBRL%\msgfmt.exe
|
||||
set SAMPLE_NUMFMT=%ICU_SAMPLESDIR%\numfmt\%ICU_ARCH%\%ICU_DBRL%\numfmt.exe
|
||||
set SAMPLE_PLURFMTSAMPLE=%ICU_SAMPLESDIR%\plurfmtsample\%ICU_ARCH%\%ICU_DBRL%\plurfmtsample.exe
|
||||
set SAMPLE_PROPS=%ICU_SAMPLESDIR%\props\%ICU_ARCH%\%ICU_DBRL%\props.exe
|
||||
set SAMPLE_STRSRCH=%ICU_SAMPLESDIR%\strsrch\%ICU_ARCH%\%ICU_DBRL%\strsrch.exe
|
||||
set SAMPLE_TRANSLIT=%ICU_SAMPLESDIR%\translit\%ICU_ARCH%\%ICU_DBRL%\translit.exe
|
||||
set SAMPLE_UCITER8=%ICU_SAMPLESDIR%\uciter8\%ICU_ARCH%\%ICU_DBRL%\uciter8.exe
|
||||
set SAMPLE_UCNV=%ICU_SAMPLESDIR%\ucnv\%ICU_ARCH%\%ICU_DBRL%\ucnv.exe
|
||||
REM udata needs changes to the vcxproj to change the output locations for writer/reader.
|
||||
rem set SAMPLE_UDATA_WRITER=%ICU_SAMPLESDIR%\udata\%ICU_ARCH%\%ICU_DBRL%\writer.exe
|
||||
rem set SAMPLE_UDATA_READER=%ICU_SAMPLESDIR%\udata\%ICU_ARCH%\%ICU_DBRL%\reader.exe
|
||||
set SAMPLE_UFORTUNE=%ICU_SAMPLESDIR%\ufortune\%ICU_ARCH%\%ICU_DBRL%\ufortune.exe
|
||||
set SAMPLE_UGREP=%ICU_SAMPLESDIR%\ugrep\%ICU_ARCH%\%ICU_DBRL%\ugrep.exe
|
||||
REM There is also the 'resources' project in VS.
|
||||
set SAMPLE_URESB=%ICU_SAMPLESDIR%\uresb\%ICU_ARCH%\%ICU_DBRL%\uresb.exe
|
||||
set SAMPLE_USTRING=%ICU_SAMPLESDIR%\ustring\%ICU_ARCH%\%ICU_DBRL%\ustring.exe
|
||||
|
||||
|
||||
@set THT=break
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_BREAK%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=cal
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CAL%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=case
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CASE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=citer
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CITER%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=coll
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_COLL%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=csdet
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_CSDET% %ICU_SAMPLESDIR%\csdet\readme.txt
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=date
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_DATE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=datefmt
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_DATEFMT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=dtitvfmtsample
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_DTITVFMT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=dtptngsample
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\dtptngsample\%ICU_ARCH%\%ICU_DBRL%
|
||||
%SAMPLE_DTPTNG%
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=msgfmt
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_MSGFMT% arg1 arg2
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=numfmt
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_NUMFMT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=plurfmtsample
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_PLURFMTSAMPLE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=props
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_PROPS%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=strsrch
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_STRSRCH%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=translit
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_TRANSLIT%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=citer8
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_UCITER8%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=ucnv
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\ucnv
|
||||
%SAMPLE_UCNV%
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
REM TODO: udata needs changes to the vcxproj file to fix the output locations for writer/reader.
|
||||
@set THT=udata
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\udata\%ICU_ARCH%\%ICU_DBRL%
|
||||
@echo TODO: udata needs changes to the vcxproj file to fix the output locations for writer/reader.
|
||||
@echo Skipping %THT%
|
||||
rem %SAMPLE_UDATA_WRITER%
|
||||
rem %SAMPLE_UDATA_READER%
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=ufortune
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
if "%ICU_ARCH%" == "x64" (
|
||||
@echo The ufortune sample currently only runs on x86.
|
||||
@echo Skipping %THT%.
|
||||
) else (
|
||||
%SAMPLE_UFORTUNE%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
)
|
||||
|
||||
@set THT=ugrep
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
echo Looking for "ICU" in '%ICU_SAMPLESDIR%\ugrep\readme.txt' with ugrep.exe
|
||||
%SAMPLE_UGREP% ICU %ICU_SAMPLESDIR%\ugrep\readme.txt
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=uresb
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
pushd %ICU_SAMPLESDIR%\uresb
|
||||
%SAMPLE_URESB% en
|
||||
%SAMPLE_URESB% root
|
||||
%SAMPLE_URESB% sr
|
||||
popd
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
@set THT=ustring
|
||||
@echo.
|
||||
@echo ==== %THT% =========================================================================
|
||||
%SAMPLE_USTRING%
|
||||
if ERRORLEVEL 1 goto :SampleError
|
||||
|
||||
|
||||
|
||||
rem All done
|
||||
goto :QuitWithNoError
|
||||
|
||||
:SampleError
|
||||
echo.
|
||||
echo ERROR: Sample program %THT% did not exit cleanly. Stopping execution.
|
||||
echo.
|
||||
goto :QuitWithError
|
||||
|
||||
:QuitWithNoError
|
||||
echo.
|
||||
popd
|
||||
exit /b 0
|
||||
|
||||
:QuitWithError
|
||||
echo.
|
||||
popd
|
||||
rem Exit with non-zero error code.
|
||||
exit /b 1
|
||||
|
|
Loading…
Add table
Reference in a new issue