Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
docparser (1.0.14) UNRELEASED; urgency=medium
docparser (1.0.15) unstable; urgency=medium

* use so name

-- Zhang Sheng <zhangsheng@uniontech.com> Wed, 15 Jan 2025 14:34:49 +0800

docparser (1.0.14) unstable; urgency=medium

* fix bug
*

-- Zhang Sheng <zhangsheng@uniontech.com> Tue, 07 Jan 2025 13:04:28 +0800

Expand Down
6 changes: 6 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ add_library(docparser SHARED
${SRC_FILES}
)

# 设置库的版本信息
set_target_properties(docparser PROPERTIES
VERSION 1.0
SOVERSION 1
)

# 设置目标属性
target_include_directories(docparser
PUBLIC
Expand Down
Loading