03ef220417
RIME: Rime Input Method Engine features: - supporting varieties of input methods, either shape-based or phonetic-based, including those for Chinese dialects - a built-in dictionary in traditional Chinese, easily converting to simplified Chinese via opencc - a modulized, extensible input method framework to create innovative input schemata in YAML syntax - cross-platform core library in C++, built on top of open-source technologies - OS-specific wrappers working consistently on Windows, Linux and OS X
14 lines
343 B
Makefile
14 lines
343 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/11/29 09:31:49 obache Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.librime
|
|
PKG_SUPPORTED_OPTIONS= tests
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mtests)
|
|
.include "../../devel/googletest/buildlink3.mk"
|
|
CMAKE_ARGS+= -DBUILD_TEST=ON
|
|
TEST_TARGET= test
|
|
TEST_ENV+= LD_LIBRARY_PATH=${WRKSRC}/lib
|
|
.endif
|