summaryrefslogtreecommitdiffstats
path: root/fsa/src/vespa/fsamanagers/CMakeLists.txt
blob: f119a0325b79b644462918dd4b219a6293f7e920 (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 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_library(fsamanagers
    SOURCES
    conceptnetmanager.cpp
    fsamanager.cpp
    metadatamanager.cpp
    mutex.cpp
    rwlock.cpp
    singleton.cpp
    INSTALL lib64
    DEPENDS
    fsa
)
find_package(Threads REQUIRED)
target_link_libraries(fsamanagers 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)