aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Weggemann <jensweh@gmail.com>2018-10-16 19:05:57 +0200
committerRobert Schumacher <roschuma@microsoft.com>2018-10-16 10:05:57 -0700
commit611b87955b0c53b9dac2fd1399ffddfb90d7bb17 (patch)
treef203119232164149be0ccb1d7b77ec5d6c9f4691
parentdf82d21f320285a8f4cbf16756d8e035cdc74e7c (diff)
downloadvcpkg-611b87955b0c53b9dac2fd1399ffddfb90d7bb17.tar.gz
vcpkg-611b87955b0c53b9dac2fd1399ffddfb90d7bb17.zip
[vulkan-memory-allocator] Initial port for release 2.1.0 (#4482)
* [vulkan-memory-allocator] Initial port for release 2.1.0 Port for https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator, current release 2.1.0. * [vulkan-memory-allocator] Simplification; avoid usage file if not required. Use unofficial- prefix for targets.
-rw-r--r--ports/vulkan-memory-allocator/CONTROL3
-rw-r--r--ports/vulkan-memory-allocator/portfile.cmake15
-rw-r--r--ports/vulkan-memory-allocator/unofficial-vulkan-memory-allocator-config.cmake8
3 files changed, 26 insertions, 0 deletions
diff --git a/ports/vulkan-memory-allocator/CONTROL b/ports/vulkan-memory-allocator/CONTROL
new file mode 100644
index 000000000..ec6c0757a
--- /dev/null
+++ b/ports/vulkan-memory-allocator/CONTROL
@@ -0,0 +1,3 @@
+Source: vulkan-memory-allocator
+Version: 2.1.0-1
+Description: Easy to integrate Vulkan memory allocation library from GPUOpen
diff --git a/ports/vulkan-memory-allocator/portfile.cmake b/ports/vulkan-memory-allocator/portfile.cmake
new file mode 100644
index 000000000..c72af8935
--- /dev/null
+++ b/ports/vulkan-memory-allocator/portfile.cmake
@@ -0,0 +1,15 @@
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
+ REF v2.1.0
+ SHA512 4d7d431d52503d4d448a8b571935678a8a04d8f4a7eceb6ad49cde4f78954e7a2a0a91e48c75382699a62d81cf00601aaa0a358d979ed8e14741a9956484b51e
+ HEAD_REF master
+)
+
+file(COPY "${SOURCE_PATH}/src/vk_mem_alloc.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
+
+file(COPY ${CMAKE_CURRENT_LIST_DIR}/unofficial-vulkan-memory-allocator-config.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/unofficial-vulkan-memory-allocator)
+
+configure_file(${SOURCE_PATH}/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/vulkan-memory-allocator/copyright COPYONLY)
diff --git a/ports/vulkan-memory-allocator/unofficial-vulkan-memory-allocator-config.cmake b/ports/vulkan-memory-allocator/unofficial-vulkan-memory-allocator-config.cmake
new file mode 100644
index 000000000..fc9f62550
--- /dev/null
+++ b/ports/vulkan-memory-allocator/unofficial-vulkan-memory-allocator-config.cmake
@@ -0,0 +1,8 @@
+
+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::vulkan-memory-allocator::vulkan-memory-allocator INTERFACE IMPORTED)
+set_target_properties(unofficial::vulkan-memory-allocator::vulkan-memory-allocator PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include")
+set(_IMPORT_PREFIX)