diff --git a/ports/stduuid/portfile.cmake b/ports/stduuid/portfile.cmake index a7afc2a08e198a..aba9ef80d257b2 100644 --- a/ports/stduuid/portfile.cmake +++ b/ports/stduuid/portfile.cmake @@ -16,7 +16,7 @@ vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA OPTIONS - ${FEATURE_OPTIONS} + ${FEATURE_OPTIONS} ) vcpkg_install_cmake() diff --git a/ports/stduuid/vcpkg.json b/ports/stduuid/vcpkg.json index cb5d6b9fc41c7b..8fd17877a04923 100644 --- a/ports/stduuid/vcpkg.json +++ b/ports/stduuid/vcpkg.json @@ -1,22 +1,18 @@ -{ - "name": "stduuid", - "version-string": "1.0-5890c94", - "description": "A C++17 cross-platform single-header library implementation for universally unique identifiers, simply know as either UUID or GUID (mostly on Windows)", - "homepage": "https://github.com/mariusbancila/stduuid", - "license": "MIT", - "features": [ - { - "name": "test", - "description": "Build the unit tests" - }, - { - "name": "system-gen", - "description": "Enable operating system uuid generator" - }, - { - "name": "cxx20-span", - "description": "Using span from std instead of gsl" - } - ] - } - \ No newline at end of file +{ + "name": "stduuid", + "version-string": "2019-02-23", + "description": "A C++17 cross-platform single-header library implementation for universally unique identifiers, simply know as either UUID or GUID (mostly on Windows)", + "homepage": "https://github.com/mariusbancila/stduuid", + "license": "MIT", + "features": { + "cxx20-span": { + "description": "Using span from std instead of gsl" + }, + "system-gen": { + "description": "Enable operating system uuid generator" + }, + "test": { + "description": "Build the unit tests" + } + } +}