We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33dd9c6 commit 4ecdd8bCopy full SHA for 4ecdd8b
Changelog.md
@@ -1,6 +1,7 @@
1
## 0.2.1 (unreleased)
2
3
- Fixes unicode-query's output for "character width".
4
+- unicode-query is now linked statically on UNIX platforms.
5
6
## 0.2.0 (2022-11-13)
7
src/tools/CMakeLists.txt
@@ -8,5 +8,8 @@ if(LIBUNICODE_TOOLS)
8
9
add_executable(unicode-query unicode-query.cpp)
10
target_link_libraries(unicode-query unicode)
11
+ if(UNIX)
12
+ target_link_libraries(unicode-query "-static")
13
+ endif()
14
install(TARGETS unicode-query DESTINATION bin)
15
endif()
0 commit comments