diff options
Diffstat (limited to 'vcpkg/ports/dingo')
| -rw-r--r-- | vcpkg/ports/dingo/portfile.cmake | 13 | ||||
| -rw-r--r-- | vcpkg/ports/dingo/vcpkg.json | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/vcpkg/ports/dingo/portfile.cmake b/vcpkg/ports/dingo/portfile.cmake new file mode 100644 index 0000000..9dc5654 --- /dev/null +++ b/vcpkg/ports/dingo/portfile.cmake @@ -0,0 +1,13 @@ +set(VCPKG_BUILD_TYPE release) # header-only +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO romanpauk/dingo + REF "v${VERSION}" + HEAD_REF master + SHA512 a302e8e504a9f0a863c729432a479134ade96198af48219064d8f3f1e18ef78541e93048811865cd8cb878e5a0837ed98425e7481fd08726806e6b72aa57f908 +) + +vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}") +vcpkg_cmake_install() +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") + diff --git a/vcpkg/ports/dingo/vcpkg.json b/vcpkg/ports/dingo/vcpkg.json new file mode 100644 index 0000000..c95ad6d --- /dev/null +++ b/vcpkg/ports/dingo/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "dingo", + "version": "0.1.0", + "description": "Dependency Injection Container for C++", + "homepage": "https://github.com/romanpauk/dingo", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |