diff --git a/SConstruct b/SConstruct new file mode 100644 index 0000000000000..01015552eba7b --- /dev/null +++ b/SConstruct @@ -0,0 +1 @@ +Program('hello.cpp') diff --git a/wscript b/wscript new file mode 100644 index 0000000000000..e1e1ada702d33 --- /dev/null +++ b/wscript @@ -0,0 +1,9 @@ +# pylint: disable=missing-module-docstring,invalid-name + + +def configure(_ctx): + pass + + +def build(ctx): + ctx.exec_command('echo Hello, Waf for CODEQL !')