We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9ddcc commit ad09039Copy full SHA for ad09039
src/contrib/CMakeLists.txt
@@ -3,6 +3,8 @@ project(contrib)
3
####################################
4
# create library target
5
6
+add_subdirectory(include)
7
+
8
if (LUCENE_BUILD_SHARED)
9
add_library(lucene++-contrib SHARED)
10
else()
@@ -92,4 +94,5 @@ install(TARGETS lucene++-contrib
92
94
install(
93
95
FILES ${contrib_headers}
96
LIBRARY DESTINATION "include/lucene++"
97
+ LIBRARY DESTINATION "src/contrib/include"
98
COMPONENT development-contrib)
src/contrib/include/CMakeLists.txt
@@ -0,0 +1,11 @@
1
+####################################
2
+# install headers
+file(GLOB_RECURSE lucene_headers
+ "${CMAKE_CURRENT_SOURCE_DIR}/*.h"
+)
+install(
+ FILES ${lucene_headers}
11
+ DESTINATION include/lucene++ )
0 commit comments