~mshinke/nvdajp/betterBraille

« back to all changes in this revision

Viewing changes to nvdaHelper/nvdajptext/sconscript

  • Committer: Masataka Shinke
  • Date: 2011-10-25 12:35:26 UTC
  • mfrom: (4175.1.10 jpmain)
  • mto: (4175.1.36 jpmain)
  • mto: This revision was merged to the branch mainline in revision 4193.
  • Revision ID: mshinke@users.sourceforge.jp-20111025123526-ze527a2rl3z0g2ky
lp:~nishimotz/nvdajp/main : 4185 をマージ

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# nvdajptext.dll
 
2
Import([
 
3
        'env',
 
4
])
 
5
sourceFiles=[
 
6
        'text2mecab.c',
 
7
        #'text2mecab.h',
 
8
        #'text2mecab_rule_euc_jp.h',
 
9
        #'text2mecab_rule_shift_jis.h',
 
10
        #'text2mecab_rule_utf_8.h',
 
11
]
 
12
objFiles=[env.Object('nvdajptext.c')]
 
13
objFiles.append([env.Object('_jtalk_%s.obj'%x.replace('/','_'),'#/include/jtalk/libopenjtalk/text2mecab/%s'%x) for x in sourceFiles])
 
14
env.Append(CPPDEFINES=[('CHARSET_SHIFT_JIS',1)])
 
15
nvdajptextLib=env.SharedLibrary('nvdajptext',objFiles+['nvdajptext.def'])
 
16
Return('nvdajptextLib')