summaryrefslogtreecommitdiffstats
path: root/addon/doxysearch/CMakeLists.txt
blob: e3511aa834899c12be7c5e2fdbf484a928495ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
if (build_search)

find_package(Xapian REQUIRED)
find_package(ZLIB REQUIRED)

include_directories(
	${CMAKE_SOURCE_DIR}/qtools
	${XAPIAN_INCLUDE_DIR}
        ${ZLIB_INCLUDE_DIRS}
)
add_executable(doxyindexer
               doxyindexer.cpp
)
target_link_libraries(doxyindexer
                      ${XAPIAN_LIBRARIES}
                      ${ZLIB_LIBRARIES}
                      qtools
)

add_executable(doxysearch.cgi
               doxysearch.cpp
)
target_link_libraries(doxysearch.cgi
                      ${XAPIAN_LIBRARIES}
                      ${ZLIB_LIBRARIES}
)

install(TARGETS doxyindexer doxysearch.cgi DESTINATION bin)

endif()