From 00a29c6879db2981093b73fa7006c9d07fb2f861 Mon Sep 17 00:00:00 2001 From: Vinny Date: Wed, 30 Oct 2019 15:39:13 -0400 Subject: Added OIS port (#8507) * Added OIS port * Portfile deletes bin/ and debug/bin/ when library is static * Replaced configure_file() call with file(INSTALL) call * Added fail on ARM or UWP * Moved early failure to top of file --- ports/ois/CONTROL | 4 ++++ ports/ois/portfile.cmake | 31 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 ports/ois/CONTROL create mode 100644 ports/ois/portfile.cmake diff --git a/ports/ois/CONTROL b/ports/ois/CONTROL new file mode 100644 index 000000000..2759167a7 --- /dev/null +++ b/ports/ois/CONTROL @@ -0,0 +1,4 @@ +Source: ois +Version: 1.5 +Description: Cross Platform Object Oriented Input Lib System. Meant to be very robust and compatiable with many systems and operating systems. +Homepage: https://wgois.github.io/OIS/ \ No newline at end of file diff --git a/ports/ois/portfile.cmake b/ports/ois/portfile.cmake new file mode 100644 index 000000000..526cdb6b8 --- /dev/null +++ b/ports/ois/portfile.cmake @@ -0,0 +1,31 @@ +# Automatically fail port install for UWP and ARM. Unsure if it is +# supported by library. See here: https://github.com/wgois/OIS/issues/57 +vcpkg_fail_port_install(ON_ARCH "arm" "arm64" ON_TARGET "uwp") + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO wgois/OIS + REF v1.5 + SHA512 5ab1dda7c25c1959ccbbb758ea3fda36bd62ad65f46e2c6b418317a5eb39e0bace52a44ae079dfb69fc58c90df54f8e50d589daae1100ec615325363c9d77513 + HEAD_REF master +) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA +) + +vcpkg_install_cmake() + +if(VCPKG_LIBRARY_LINKAGE STREQUAL static) + file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin) +endif() + +# Include files should not be duplicated into the /debug/include directory +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) + +# Handle copyright +file(INSTALL ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) + +# CMake integration test +# vcpkg_test_cmake(PACKAGE_NAME ${PORT}) -- cgit v1.2.3