~mshinke/nvdajp/betterBraille

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