diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-09-25 10:38:06 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-09-25 10:38:06 +0200 |
| commit | f34d39946213f68c4d49c47eaaedb99b0f5f47ad (patch) | |
| tree | c98ab1d8e90275c203b5e4b8e6ce1b53ff3d0eff /tools/zxdmake.json | |
| parent | daa4f8c748d290feba8a71e889743a8a3097ad7d (diff) | |
IMP: Add driver creation tool, zxdmake. Also adding a FireWall system.
- A FW is used to block connections from unknown ends.
- The ZXD is a format used to describe a ZKA PE32+ driver.
- Some refactors have been done as well.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'tools/zxdmake.json')
| -rw-r--r-- | tools/zxdmake.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/zxdmake.json b/tools/zxdmake.json new file mode 100644 index 00000000..d24a5de9 --- /dev/null +++ b/tools/zxdmake.json @@ -0,0 +1,19 @@ +{ + "compiler_path": "x86_64-w64-mingw32-g++.exe", + "compiler_std": "c++20", + "headers_path": [ "../", "./", "../../" ], + "sources_path": [ "src/zxdmake.cxx" ], + "output_name": "zxdmake.exe", + "compiler_flags": [ + "-ffreestanding", + "-fno-rtti", + "-fno-exceptions", + "-Wl,--subsystem=17" + ], + "cpp_macros": [ + "__DRVSIGN_AMD64__", + "cDSVersion=0x0100", + "cDSVersionHighest=0x0100", + "cDSVersionLowest=0x0100" + ] +} |
