diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-04 15:16:07 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-04 15:16:07 -0700 |
| commit | 429e2eca4ab74127b144743b136f0407c0ae4492 (patch) | |
| tree | f32202654de354ae43b166a1bbad12c00bbee16e /toolsrc/include | |
| parent | e383b39637aa8a7a62b837862a86ca89a996a807 (diff) | |
| download | vcpkg-429e2eca4ab74127b144743b136f0407c0ae4492.tar.gz vcpkg-429e2eca4ab74127b144743b136f0407c0ae4492.zip | |
BinaryParagraph now contains a package_spec instead of name+triplet
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/BinaryParagraph.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/BinaryParagraph.h b/toolsrc/include/BinaryParagraph.h index 88d6e84b1..01979c924 100644 --- a/toolsrc/include/BinaryParagraph.h +++ b/toolsrc/include/BinaryParagraph.h @@ -3,6 +3,7 @@ #include <unordered_map> #include "SourceParagraph.h" #include "triplet.h" +#include "package_spec.h" namespace vcpkg { @@ -18,11 +19,10 @@ namespace vcpkg std::string dir() const; - std::string name; + package_spec spec; std::string version; std::string description; std::string maintainer; - triplet target_triplet; std::vector<std::string> depends; }; |
