runtime: implement a bshell_command sub-class for calling native commands

This commit is contained in:
2026-06-13 13:47:34 +01:00
parent 2332d48b0c
commit fba7987d78
4 changed files with 268 additions and 0 deletions
+4
View File
@@ -1,10 +1,14 @@
#include <bshell/command/alias.h>
#include <bshell/command/command.h>
#include <bshell/command/native-command.h>
#include <bshell/runtime/cmdcall.h>
#include <bshell/runtime/pipeline.h>
#include <bshell/runtime/runtime.h>
#include <bshell/status.h>
#include <fx/collections/array.h>
#include <fx/collections/hashtable.h>
#include <fx/diagnostics/process.h>
#include <fx/io/path.h>
#include <fx/reflection/assembly.h>
#include <fx/reflection/function.h>
#include <fx/reflection/type.h>