~ubuntu-branches/ubuntu/trusty/fcitx/trusty-proposed

« back to all changes in this revision

Viewing changes to src/im/pinyin/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2013-02-10 17:03:56 UTC
  • mfrom: (1.3.18) (33.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130210170356-2yuv6xy3ed378kn0
Tags: 1:4.2.7-1
* New upstream release.
* New binary packages:
  - fcitx-libs-gclient: D-Bus client library for Glib
  - fcitx-libs-qt: D-Bus client library for Qt
  - fcitx-module-quickphrase-editor: Quick Phrase editor module

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
1
set(FCITX_PINYIN_SOURCES
3
 
    py.c
4
 
    PYFA.c
5
 
    pyMapTable.c
6
 
    pyParser.c
7
 
    sp.c
8
 
    pyconfig.c
9
 
)
10
 
 
11
 
fcitx_add_addon(fcitx-pinyin ${FCITX_PINYIN_SOURCES})
12
 
 
13
 
fcitx_add_addon_header(pinyin pydef.h)
14
 
fcitx_add_configdesc_file(fcitx-pinyin.desc)
15
 
fcitx_add_addon_conf_file(fcitx-pinyin.conf)
16
 
fcitx_add_inputmethod_conf_file(pinyin.conf)
17
 
fcitx_add_inputmethod_conf_file(shuangpin.conf)
 
2
  py.c
 
3
  PYFA.c
 
4
  pyMapTable.c
 
5
  pyParser.c
 
6
  sp.c
 
7
  pyconfig.c
 
8
  )
 
9
set(FCITX_PINYIN_HEADERS
 
10
  PYFA.h
 
11
  pyconfig.h
 
12
  py.h
 
13
  pysplitdata.h
 
14
  pyParser.h
 
15
  spdata.h
 
16
  pyMapTable.h
 
17
  sp.h
 
18
  pydef.h
 
19
  )
 
20
 
 
21
fcitx_add_addon_full(pinyin SCAN SCAN_PRIV DESC
 
22
  SOURCES ${FCITX_PINYIN_SOURCES}
 
23
  HEADERS pydef.h
 
24
  IM_CONFIG pinyin.conf shuangpin.conf
 
25
  EXTRA_PO ${FCITX_PINYIN_HEADERS})