aboutsummaryrefslogtreecommitdiffstats
path: root/fsa/src/vespa/fsamanagers/CMakeLists.txt
blob: fbb665d9d94542c653098128860b32ce62695de4 (plain) (blame)
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
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_library(vespafsamanagers
    SOURCES
    conceptnetmanager.cpp
    fsamanager.cpp
    metadatamanager.cpp
    mutex.cpp
    rwlock.cpp
    singleton.cpp
    INSTALL lib64
    DEPENDS
    vespafsa
)
find_package(Threads REQUIRED)
target_link_libraries(vespafsamanagers PUBLIC ${CMAKE_THREAD_LIBS_INIT})

install(FILES
    conceptnethandle.h
    conceptnetmanager.h
    fsahandle.h
    fsamanager.h
    metadatahandle.h
    metadatamanager.h
    mutex.h
    refcountable.h
    rwlock.h
    singleton.h
    DESTINATION include/vespa/fsamanagers)