mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-06-07 02:52:46 +08:00
[libunibreak] Fixed missing definition of variable in config.cmake (#24476)
* Updated libunibreak and added config.cmake file * Updated version * Updated the manifest file * updated git-tree * Remove vcpkg-cmake-config dependency * updated version * Fix issue with libunibreak-config.cmake.in * updated git-tree * increased port-version * updated git-tree Co-authored-by: Benjamin Oldenburg <benamin.oldenburg@ordis.co.th>
This commit is contained in:
parent
60c2bed135
commit
cfcb3c761a
@ -6,6 +6,14 @@ if(TARGET libunibreak)
|
||||
return()
|
||||
endif()
|
||||
|
||||
# Compute the installation prefix relative to this file.
|
||||
get_filename_component(_INSTALL_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
get_filename_component(_INSTALL_DIR "${_INSTALL_DIR}" PATH)
|
||||
get_filename_component(_INSTALL_DIR "${_INSTALL_DIR}" PATH)
|
||||
if(_INSTALL_DIR STREQUAL "/")
|
||||
set(_INSTALL_DIR "")
|
||||
endif()
|
||||
|
||||
add_library(unibreak INTERFACE IMPORTED GLOBAL)
|
||||
add_library(libunibreak::libunibreak ALIAS unibreak)
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"name": "libunibreak",
|
||||
"version": "5.0",
|
||||
"port-version": 1,
|
||||
"description": "an implementation of the line breaking and word breaking algorithms as described in [Unicode Standard Annex 14] 1 and [Unicode Standard Annex 29] 2. Check the project's [home page] 3 for up-to-date information.",
|
||||
"homepage": "https://github.com/adah1972/libunibreak",
|
||||
"license": "zlib-acknowledgement",
|
||||
|
@ -4114,7 +4114,7 @@
|
||||
},
|
||||
"libunibreak": {
|
||||
"baseline": "5.0",
|
||||
"port-version": 0
|
||||
"port-version": 1
|
||||
},
|
||||
"libunifex": {
|
||||
"baseline": "2021-12-07",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "724f588851a5f81f6ddd8eb1fc01a45bedfa5517",
|
||||
"version": "5.0",
|
||||
"port-version": 1
|
||||
},
|
||||
{
|
||||
"git-tree": "ab89a270477d6d97e3d70c4503ee573f1ca8e539",
|
||||
"version": "5.0",
|
||||
|
Loading…
Reference in New Issue
Block a user