File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ project(contrib)
3
3
####################################
4
4
# create library target
5
5
####################################
6
+ add_subdirectory (include )
7
+
6
8
if (LUCENE_BUILD_SHARED )
7
9
add_library (lucene++-contrib SHARED )
8
10
else ()
@@ -92,4 +94,5 @@ install(TARGETS lucene++-contrib
92
94
install (
93
95
FILES ${contrib_headers}
94
96
LIBRARY DESTINATION "include/lucene++"
97
+ LIBRARY DESTINATION "src/contrib/include"
95
98
COMPONENT development-contrib )
Original file line number Diff line number Diff line change
1
+ ####################################
2
+ # install headers
3
+ ####################################
4
+
5
+ file (GLOB_RECURSE lucene_headers
6
+ "${CMAKE_CURRENT_SOURCE_DIR} /*.h"
7
+ )
8
+
9
+ install (
10
+ FILES ${lucene_headers}
11
+ DESTINATION include /lucene++ )
You can’t perform that action at this time.
0 commit comments