From edd5a527fff4957cb91c87d1f081b861550614b5 Mon Sep 17 00:00:00 2001 From: David Hotham Date: Sun, 14 Dec 2014 13:24:02 +0000 Subject: [PATCH] Add missing header files to install --- cpp/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index f9f913475..3539b941b 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -536,13 +536,18 @@ if (${BUILD_GEOCODER} STREQUAL "ON") endif () install ( - FILES "src/phonenumbers/base/basictypes.h" + FILES + "src/phonenumbers/base/basictypes.h" + "src/phonenumbers/base/template_util.h" + "src/phonenumbers/base/logging.h" + "src/phonenumbers/base/thread_checker.h" DESTINATION include/phonenumbers/base/ ) install (FILES "src/phonenumbers/base/memory/scoped_ptr.h" "src/phonenumbers/base/memory/singleton.h" + "src/phonenumbers/base/memory/singleton_posix.h" DESTINATION include/phonenumbers/base/memory/ )