[Beignet] [PATCH] Add CL/*.hpp to installing files
Boqun Feng
boqun.feng at intel.com
Sun May 19 20:55:58 PDT 2013
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 at intel.com>
---
include/CMakeLists.txt | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
index 1f0437f..4d0bed7 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)
--
1.8.2.3
More information about the Beignet
mailing list