Merge pull request #67 from albertfong/doctest

Add doctest 1.1.0
This commit is contained in:
Robert Schumacher 2016-09-22 11:28:05 -07:00 committed by GitHub
commit 80d378585c
2 changed files with 16 additions and 0 deletions

3
ports/doctest/CONTROL Normal file
View File

@ -0,0 +1,3 @@
Source: doctest
Version: 1.1.0
Description: The lightest feature-rich C++ single-header testing framework for unit tests and TDD

View File

@ -0,0 +1,13 @@
include(vcpkg_common_functions)
vcpkg_download_distfile(ARCHIVE
URL "https://github.com/onqtam/doctest/archive/1.1.0.zip"
FILENAME "doctest-1.1.0.zip"
MD5 4aee74025b34b4a00a253b6262bdeeb1
)
vcpkg_extract_source_archive(${ARCHIVE})
# Handle copyright
file(INSTALL ${CURRENT_BUILDTREES_DIR}/src/doctest-1.1.0/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/doctest RENAME copyright)
# Copy header file
file(INSTALL ${CURRENT_BUILDTREES_DIR}/src/doctest-1.1.0/doctest/doctest.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/doctest)