[project] add cpp target

This commit is contained in:
2020-03-25 21:03:46 +03:00
parent 90f1a9b77f
commit 1bd18caa9a
4 changed files with 28 additions and 3 deletions

View File

@@ -392,6 +392,19 @@ class LinuxRunner extends Runner {
Runner.register(Platform.LINUX, LinuxRunner);
/**
*
*/
class CPPRunner extends LinuxRunner {
constructor(config, debug) {
super(config, debug);
this.platform = Platform.CPP
}
}
Runner.register(Platform.CPP, CPPRunner);
/**
*
*/