diff options
Diffstat (limited to 'vcpkg/ports/manif')
| -rw-r--r-- | vcpkg/ports/manif/portfile.cmake | 20 | ||||
| -rw-r--r-- | vcpkg/ports/manif/usage | 4 | ||||
| -rw-r--r-- | vcpkg/ports/manif/vcpkg.json | 20 |
3 files changed, 44 insertions, 0 deletions
diff --git a/vcpkg/ports/manif/portfile.cmake b/vcpkg/ports/manif/portfile.cmake new file mode 100644 index 0000000..db41d79 --- /dev/null +++ b/vcpkg/ports/manif/portfile.cmake @@ -0,0 +1,20 @@ +#header-only library +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO artivis/manif + REF "${VERSION}" + SHA512 ab74e6c67641a9bb33bf779fb70d4f79d0758840f28750448c0a26714cd3941376f128cd3936d7329f9c74becc18440fca2a1ff52759f99019fb430287a3a52f + HEAD_REF devel +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" +) + +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH share/manif/cmake) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") + +configure_file("${CMAKE_CURRENT_LIST_DIR}/usage" "${CURRENT_PACKAGES_DIR}/share/${PORT}/usage" COPYONLY) diff --git a/vcpkg/ports/manif/usage b/vcpkg/ports/manif/usage new file mode 100644 index 0000000..45005c7 --- /dev/null +++ b/vcpkg/ports/manif/usage @@ -0,0 +1,4 @@ +manif provides CMake targets: + + find_package(manif CONFIG REQUIRED) + target_link_libraries(main PRIVATE MANIF::manif) diff --git a/vcpkg/ports/manif/vcpkg.json b/vcpkg/ports/manif/vcpkg.json new file mode 100644 index 0000000..9d68287 --- /dev/null +++ b/vcpkg/ports/manif/vcpkg.json @@ -0,0 +1,20 @@ +{ + "name": "manif", + "version": "0.0.5", + "description": "A small C++11 header-only library for Lie theory.", + "homepage": "https://github.com/artivis/manif", + "documentation": "https://artivis.github.io/manif/", + "license": "MIT", + "dependencies": [ + "eigen3", + "tl-optional", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |