summaryrefslogtreecommitdiff
path: root/src/deps.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2024-12-23 12:14:46 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2024-12-28 15:39:26 +0100
commit15e2bd35a8da320f074942e814885f3d6eaf0706 (patch)
treef74b1067dbde357532d8e38871e6b8cb76ea6da9 /src/deps.h
parent78c5477b3989d67169de2d05665adfb801caab23 (diff)
Diffstat (limited to 'src/deps.h')
-rw-r--r--src/deps.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/deps.h b/src/deps.h
new file mode 100644
index 0000000..be0dfb2
--- /dev/null
+++ b/src/deps.h
@@ -0,0 +1,12 @@
+// -*- c++ -*-
+// Distributed under the BSD 2-Clause License.
+// See accompanying file LICENSE for details.
+#pragma once
+
+#include "ctor.h"
+
+#include <vector>
+#include <string>
+
+std::vector<std::string> readDeps(const std::string& dep_file,
+ ctor::toolchain toolchain);