summaryrefslogtreecommitdiffstats
path: root/cpp/README
diff options
context:
space:
mode:
authorphilip.liard@gmail.com <philip.liard@gmail.com@ee073f10-1060-11df-b6a4-87a95322a99c>2011-09-21 17:43:54 +0000
committerphilip.liard@gmail.com <philip.liard@gmail.com@ee073f10-1060-11df-b6a4-87a95322a99c>2011-09-21 17:43:54 +0000
commit8546a7709c652986c24b15ffee439f1f4ebc661d (patch)
tree456e180ef549b6c4b7f5369014e8cb68a0085284 /cpp/README
parentbfe622a229cb659da4deb2648e70dca476769ea2 (diff)
downloadandroid_external_libphonenumbergoogle-8546a7709c652986c24b15ffee439f1f4ebc661d.tar.gz
android_external_libphonenumbergoogle-8546a7709c652986c24b15ffee439f1f4ebc661d.tar.bz2
android_external_libphonenumbergoogle-8546a7709c652986c24b15ffee439f1f4ebc661d.zip
CPP: Add phonenumbermatcher.
git-svn-id: http://libphonenumber.googlecode.com/svn/trunk@356 ee073f10-1060-11df-b6a4-87a95322a99c
Diffstat (limited to 'cpp/README')
-rw-r--r--cpp/README5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/README b/cpp/README
index 5cb35e2..4825d1a 100644
--- a/cpp/README
+++ b/cpp/README
@@ -80,12 +80,15 @@ How to build libphonenumber C++:
$ cd libphonenumber
$ mkdir build
$ cd build
- $ cmake ../cpp/
+ $ cmake ..
$ make
Supported build parameters:
Build parameters can be specified invoking CMake with '-DKEY=VALUE' or using a
CMake user interface (ccmake or cmake-gui).
+ USE_ICU_REGEXP = ON | OFF [ON] -- Use ICU regexp engine.
USE_LITE_METADATA = ON | OFF [OFF] -- Generates smaller metadata that doesn't
include example numbers.
+ USE_RE2 = ON | OFF [OFF] -- Use RE2.
+ USE_STD_MAP = ON | OFF [OFF] -- Force the use of std::map.