Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
0f3c756c
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
大约 1 年 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0f3c756c
编写于
2月 08, 2018
作者:
G
Garret Rieger
提交者:
Behdad Esfahbod
2月 08, 2018
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add CMake config for building a separate harfbuzz-subset.
上级
d4d120ad
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
4 deletion
+15
-4
CMakeLists.txt
CMakeLists.txt
+14
-3
test/api/CMakeLists.txt
test/api/CMakeLists.txt
+1
-1
未找到文件。
CMakeLists.txt
浏览文件 @
0f3c756c
...
...
@@ -253,8 +253,10 @@ set (project_sources
${
HB_FALLBACK_sources
}
${
HB_OT_sources
}
${
HB_OT_RAGEL_GENERATED_sources
}
${
HB_OT_RAGEL_GENERATED_sources
}
)
set
(
subset_project_sources
${
HB_SUBSET_sources
}
)
...
...
@@ -268,6 +270,10 @@ set (project_headers
${
HB_SUBSET_headers
}
)
set
(
subset_project_headers
${
HB_SUBSET_headers
}
)
## Find and include needed header folders and libraries
if
(
HB_HAVE_FREETYPE
)
...
...
@@ -530,6 +536,11 @@ endif ()
add_library
(
harfbuzz
${
project_sources
}
${
project_extra_sources
}
${
project_headers
}
)
target_link_libraries
(
harfbuzz
${
THIRD_PARTY_LIBS
}
)
## Define harfbuzz-subset library
add_library
(
harfbuzz-subset
${
subset_project_sources
}
${
subset_project_headers
}
)
add_dependencies
(
harfbuzz-subset harfbuzz
)
target_link_libraries
(
harfbuzz-subset harfbuzz
${
THIRD_PARTY_LIBS
}
)
if
(
UNIX OR MINGW
)
# Make symbols link locally
link_libraries
(
-Bsymbolic-functions
)
...
...
@@ -540,6 +551,7 @@ if (UNIX OR MINGW)
set
(
CMAKE_CXX_IMPLICIT_LINK_LIBRARIES
"m"
)
# libm
set
(
CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES
""
)
set_target_properties
(
harfbuzz PROPERTIES LINKER_LANGUAGE C
)
set_target_properties
(
harfbuzz-subset PROPERTIES LINKER_LANGUAGE C
)
endif
()
# No threadsafe statics as we do it ourselves
...
...
@@ -548,7 +560,6 @@ if (UNIX OR MINGW)
endif
()
endif
()
## Define harfbuzz-gobject library
if
(
HB_HAVE_GOBJECT
)
add_library
(
harfbuzz-gobject
...
...
@@ -720,7 +731,7 @@ if (HB_BUILD_UTILS)
target_link_libraries
(
hb-shape harfbuzz
)
add_executable
(
hb-subset
${
HB_SUBSET_CLI_sources
}
)
target_link_libraries
(
hb-subset harfbuzz
)
target_link_libraries
(
hb-subset harfbuzz
harfbuzz-subset
)
add_executable
(
hb-ot-shape-closure
${
HB_OT_SHAPE_CLOSURE_sources
}
)
target_link_libraries
(
hb-ot-shape-closure harfbuzz
)
...
...
test/api/CMakeLists.txt
浏览文件 @
0f3c756c
...
...
@@ -20,7 +20,7 @@ if (HB_HAVE_GLIB)
else
()
message
(
FATAL_ERROR
"No source file found for test
${
test_name
}
"
)
endif
()
target_link_libraries
(
${
test_name
}
harfbuzz
)
target_link_libraries
(
${
test_name
}
harfbuzz
harfbuzz-subset
)
add_test
(
${
test_name
}
${
test_name
}
)
endforeach
()
set_tests_properties
(
${
TEST_PROGS
}
PROPERTIES ENVIRONMENT
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录