aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/triplet.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-08 14:12:49 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-08 14:12:49 -0800
commit6e9d17f73c01c3ad07875ca79196ed2f5e2d3896 (patch)
tree4b4b22f0bd6aaca36ca56ea1d31ac68c297f0b8e /toolsrc/src/triplet.cpp
parenteaebe2888ab97de74200904807ae884419ccc195 (diff)
downloadvcpkg-6e9d17f73c01c3ad07875ca79196ed2f5e2d3896.tar.gz
vcpkg-6e9d17f73c01c3ad07875ca79196ed2f5e2d3896.zip
Introduce BUILD_INFO file. Significant change in the way static/dynamic is
handled
Diffstat (limited to 'toolsrc/src/triplet.cpp')
-rw-r--r--toolsrc/src/triplet.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/toolsrc/src/triplet.cpp b/toolsrc/src/triplet.cpp
index af2ca2a72..a6816b445 100644
--- a/toolsrc/src/triplet.cpp
+++ b/toolsrc/src/triplet.cpp
@@ -64,14 +64,4 @@ namespace vcpkg
auto it = std::find(this->m_canonical_name.cbegin(), this->m_canonical_name.cend(), '-');
return std::string(it + 1, this->m_canonical_name.cend());
}
-
- triplet::BuildType triplet::build_type() const
- {
- if (this->m_canonical_name.find("static") != std::string::npos)
- {
- return BuildType::STATIC;
- }
-
- return BuildType::DYNAMIC;
- }
}