aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/pbc/unofficial-pbc-config.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/pbc/unofficial-pbc-config.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/pbc/unofficial-pbc-config.cmake')
-rw-r--r--vcpkg/ports/pbc/unofficial-pbc-config.cmake25
1 files changed, 25 insertions, 0 deletions
diff --git a/vcpkg/ports/pbc/unofficial-pbc-config.cmake b/vcpkg/ports/pbc/unofficial-pbc-config.cmake
new file mode 100644
index 0000000..5e71df0
--- /dev/null
+++ b/vcpkg/ports/pbc/unofficial-pbc-config.cmake
@@ -0,0 +1,25 @@
+if(NOT TARGET unofficial::pbc::pbc)
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
+
+ add_library(unofficial::pbc::pbc UNKNOWN IMPORTED)
+
+ set_target_properties(unofficial::pbc::pbc PROPERTIES
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
+ )
+
+ find_library(PBC_LIBRARY_DEBUG NAMES pbclib libpbc PATHS "${_IMPORT_PREFIX}/debug" PATH_SUFFIXES lib NO_DEFAULT_PATH)
+ if(EXISTS "${PBC_LIBRARY_DEBUG}")
+ set_property(TARGET unofficial::pbc::pbc APPEND PROPERTY IMPORTED_CONFIGURATIONS "Debug")
+ set_target_properties(unofficial::pbc::pbc PROPERTIES IMPORTED_LOCATION_DEBUG "${PBC_LIBRARY_DEBUG}")
+ endif()
+
+ find_library(PBC_LIBRARY_RELEASE NAMES pbclib libpbc PATHS "${_IMPORT_PREFIX}/" PATH_SUFFIXES lib NO_DEFAULT_PATH)
+ if(EXISTS "${PBC_LIBRARY_RELEASE}")
+ set_property(TARGET unofficial::pbc::pbc APPEND PROPERTY IMPORTED_CONFIGURATIONS "Release")
+ set_target_properties(unofficial::pbc::pbc PROPERTIES IMPORTED_LOCATION_RELEASE "${PBC_LIBRARY_RELEASE}")
+ endif()
+
+ unset(_IMPORT_PREFIX)
+endif()