]> git.tdb.fi Git - builder.git/blobdiff - plugins/msvc/vssolutionfile.h
Move the VS project and solution generators to the MSVC plugin
[builder.git] / plugins / msvc / vssolutionfile.h
diff --git a/plugins/msvc/vssolutionfile.h b/plugins/msvc/vssolutionfile.h
new file mode 100644 (file)
index 0000000..2c1e602
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef VSSOLUTIONFILE_H_
+#define VSSOLUTIONFILE_H_
+
+#include <msp/builder/filetarget.h>
+
+class VsSolutionFile: public FileTarget
+{
+public:
+       VsSolutionFile(Builder &, const SourcePackage &);
+
+       const char *get_type() const override { return "VsSolutionFile"; }
+protected:
+       void find_dependencies() override;
+       void find_dependencies(const SourcePackage &);
+};
+
+#endif