File: CMakeLists.txt

package info (click to toggle)
fcitx-unikey 0.2.7%2Bgit20220410-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 684 kB
  • sloc: cpp: 6,904; makefile: 8
file content (31 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (2)
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

set(UNIKEY_SRCS
    byteio.cpp
    byteio.h
    charset.cpp
    charset.h
    convert.cpp
    data.cpp
    data.h
    error.cpp
    inputproc.cpp
    inputproc.h
    keycons.h
    mactab.cpp
    mactab.h
    pattern.cpp
    pattern.h
    ukengine.cpp
    ukengine.h
    unikey.cpp
    unikey.h
    usrkeymap.cpp
    usrkeymap.h
    vnconv.h
    vnlexi.h
)


add_library(unikey STATIC ${UNIKEY_SRCS})
set_target_properties(unikey PROPERTIES COMPILE_FLAGS "-fPIC")
target_link_libraries(unikey LibIntl::LibIntl)