aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/librtpi/unofficial-librtpi-config.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/librtpi/unofficial-librtpi-config.cmake')
-rw-r--r--vcpkg/ports/librtpi/unofficial-librtpi-config.cmake25
1 files changed, 25 insertions, 0 deletions
diff --git a/vcpkg/ports/librtpi/unofficial-librtpi-config.cmake b/vcpkg/ports/librtpi/unofficial-librtpi-config.cmake
new file mode 100644
index 0000000..49f4832
--- /dev/null
+++ b/vcpkg/ports/librtpi/unofficial-librtpi-config.cmake
@@ -0,0 +1,25 @@
+if(NOT TARGET unofficial::librtpi::librtpi)
+ 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::librtpi::librtpi UNKNOWN IMPORTED)
+
+ set_target_properties(unofficial::librtpi::librtpi PROPERTIES
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
+ )
+
+ find_library(LIBRTPI_LIBRARY_DEBUG NAMES rtpi librtpi PATHS "${_IMPORT_PREFIX}/debug" PATH_SUFFIXES lib NO_DEFAULT_PATH)
+ if(EXISTS "${LIBRTPI_LIBRARY_DEBUG}")
+ set_property(TARGET unofficial::librtpi::librtpi APPEND PROPERTY IMPORTED_CONFIGURATIONS "Debug")
+ set_target_properties(unofficial::librtpi::librtpi PROPERTIES IMPORTED_LOCATION_DEBUG "${LIBRTPI_LIBRARY_DEBUG}")
+ endif()
+
+ find_library(LIBRTPI_LIBRARY_RELEASE NAMES rtpi librtpi PATHS "${_IMPORT_PREFIX}/" PATH_SUFFIXES lib NO_DEFAULT_PATH)
+ if(EXISTS "${LIBRTPI_LIBRARY_RELEASE}")
+ set_property(TARGET unofficial::librtpi::librtpi APPEND PROPERTY IMPORTED_CONFIGURATIONS "Release")
+ set_target_properties(unofficial::librtpi::librtpi PROPERTIES IMPORTED_LOCATION_RELEASE "${LIBRTPI_LIBRARY_RELEASE}")
+ endif()
+
+ unset(_IMPORT_PREFIX)
+endif()