diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libunibreak/libunibreak-config.cmake.in | |
Diffstat (limited to 'vcpkg/ports/libunibreak/libunibreak-config.cmake.in')
| -rw-r--r-- | vcpkg/ports/libunibreak/libunibreak-config.cmake.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/vcpkg/ports/libunibreak/libunibreak-config.cmake.in b/vcpkg/ports/libunibreak/libunibreak-config.cmake.in new file mode 100644 index 0000000..0a47463 --- /dev/null +++ b/vcpkg/ports/libunibreak/libunibreak-config.cmake.in @@ -0,0 +1,32 @@ +# For old projects where the minimum CMake version is lower than 3.3.
+cmake_policy(SET CMP0057 NEW)
+include(CMakeFindDependencyMacro)
+
+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)
+
+find_library(LIBUNIBREAK_LIBRARY_DEBUG NAMES unibreak PATHS "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug" PATH_SUFFIXES lib NO_DEFAULT_PATH)
+if(LIBUNIBREAK_LIBRARY_DEBUG)
+ target_link_libraries(unibreak INTERFACE $<$<CONFIG:DEBUG>:${LIBUNIBREAK_LIBRARY_DEBUG}>)
+endif()
+
+find_library(LIBUNIBREAK_LIBRARY_RELEASE NAMES unibreak PATHS "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}" PATH_SUFFIXES lib NO_DEFAULT_PATH)
+target_link_libraries(unibreak INTERFACE $<$<NOT:$<CONFIG:DEBUG>>:${LIBUNIBREAK_LIBRARY_RELEASE}>)
+
+set(LIBUNIBREAK_LIBRARY libunibreak::libunibreak PARENT_SCOPE)
+set(LIBUNIBREAK_LIBRARIES libunibreak::libunibreak PARENT_SCOPE)
+set(LIBUNIBREAK_INCLUDE_DIR "${_INSTALL_DIR}/include" PARENT_SCOPE)
+
+target_include_directories(unibreak INTERFACE ${_INSTALL_DIR}/include)
\ No newline at end of file |