aboutsummaryrefslogtreecommitdiff
path: root/src/cli/stasis_indexer/CMakeLists.txt
blob: 68e4ae1567e5212e960ec0c7cc98cf08c4801be6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_executable(stasis_indexer
        args.c
        stasis_indexer_main.c
        callbacks.c
        helpers.c
        junitxml_report.c
        website.c
        readmes.c
)
target_include_directories(stasis_indexer PRIVATE
        ${core_INCLUDE}
        ${delivery_INCLUDE}
        ${CMAKE_CURRENT_SOURCE_DIR}/include
)
target_link_libraries(stasis_indexer PRIVATE
        stasis_delivery
)

install(TARGETS stasis_indexer RUNTIME)