aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-03-02 08:59:17 -0800
committerRobert Schumacher <roschuma@microsoft.com>2018-03-02 09:25:32 -0800
commitbad51b04626f25d323433ec159af1d60f93cadb1 (patch)
tree8338776b1b8901a11327b55663690aeb68f11f94 /toolsrc/include
parent01ba04e9a737a2b68993e196b7980ce56b8fde00 (diff)
downloadvcpkg-bad51b04626f25d323433ec159af1d60f93cadb1.tar.gz
vcpkg-bad51b04626f25d323433ec159af1d60f93cadb1.zip
[vcpkg] Improve handling of external toolchain files
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/base/cofffilereader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg/base/cofffilereader.h b/toolsrc/include/vcpkg/base/cofffilereader.h
index ad2cc7b12..e0ad69b33 100644
--- a/toolsrc/include/vcpkg/base/cofffilereader.h
+++ b/toolsrc/include/vcpkg/base/cofffilereader.h
@@ -17,7 +17,9 @@ namespace vcpkg::CoffFileReader
std::vector<MachineType> machine_types;
};
+#if defined(_WIN32)
DllInfo read_dll(const fs::path& path);
LibInfo read_lib(const fs::path& path);
+#endif
}