1 Copyright (c) 2003-2005, International Business Machines Corporation and others. All Rights Reserved.
4 This sample demonstrates
5 Using ICU to convert between different cases
9 case.cpp Main source file in C++
10 ucase.c Main source file in C
11 case.sln Windows MSVC workspace. Double-click this to get started.
12 case.vcproj Windows MSVC project file
14 To Build case on Windows
15 1. Install and build ICU
16 2. In MSVC, open the solution file icu\samples\case\case.sln
17 (or, use the workspace All, in icu\samples\all\all.sln )
18 3. Choose a Debug or Release build.
22 1. Start a command shell window
23 2. Add ICU's bin directory to the path, e.g.
24 set PATH=c:\icu\bin;%PATH%
25 (Use the path to where ever ICU is on your system.)
26 3. cd into the case directory, e.g.
27 cd c:\icu\source\samples\case\debug
33 Specify an ICU install directory when running configure,
34 using the --prefix option. The steps to build ICU will look something
36 cd <icu directory>/source
37 runConfigureICU <platform-name> --prefix <icu install directory> [other options]
44 cd <icu directory>/source/samples/case
45 gmake ICU_PREFIX=<icu install directory)
48 cd <icu directory>/source/samples/case
50 gmake ICU_PREFIX=<icu install directory> check
53 export LD_LIBRARY_PATH=<icu install directory>/lib:.:$LD_LIBRARY_PATH
57 Note: The name of the LD_LIBRARY_PATH variable is different on some systems.
58 If in doubt, run the sample using "gmake check", and note the name of
59 the variable that is used there. LD_LIBRARY_PATH is the correct name
60 for Linux and Solaris.