aboutsummaryrefslogtreecommitdiffstats
path: root/fsa/src/vespa/fsa/CMakeLists.txt
blob: 7ab2a31d8851f81190354482416ad8efc4cedc45 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_library(vespafsa
    SOURCES
    automaton.cpp
    base64.cpp
    blob.cpp
    conceptnet.cpp
    detector.cpp
    fsa.cpp
    metadata.cpp
    ngram.cpp
    permuter.cpp
    segmenter.cpp
    selector.cpp
    unicode.cpp
    unicode_charprops.cpp
    unicode_lowercase.cpp
    unicode_tables.cpp
    vectorizer.cpp
    wordchartokenizer.cpp
    INSTALL lib64
    DEPENDS
)

install(FILES
    automaton.h
    base64.h
    blob.h
    checksum.h
    conceptnet.h
    detector.h
    file.h
    fsa.h
    metadata.h
    ngram.h
    permuter.h
    segmenter.h
    selector.h
    timestamp.h
    tokenizer.h
    unicode.h
    vectorizer.h
    wordchartokenizer.h
    DESTINATION include/vespa/fsa)