summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBoqun Feng <boqun.feng@intel.com>2013-05-20 11:55:58 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-05-20 14:00:49 +0800
commit511e551f39e9ae3f6a06c6a240354083a47732f1 (patch)
treec381ac7a700fac44171e6320ac1138019e081460 /include
parent1e664c837f7426229884db6dbbe1e5bf03813936 (diff)
Add CL/*.hpp to installing files
The orignal CMake config only installed CL/*.h. As C++ binding is added, CL/*.hpp also need to be installing files. Signed-off-by: Boqun Feng <boqun.feng@intel.com> Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
index 1f0437fc..4d0bed7e 100644
--- a/include/CMakeLists.txt
+++ b/include/CMakeLists.txt
@@ -1,3 +1,5 @@
FILE(GLOB HEADER_FILES "CL/*.h")
+FILE(GLOB HPP_FILES "CL/*.hpp")
install (FILES ${HEADER_FILES} DESTINATION include/CL)
+install (FILES ${HPP_FILES} DESTINATION include/CL)