diff options
Diffstat (limited to 'tooling')
| -rw-r--r-- | tooling/fsck.hefs.cc | 15 | ||||
| -rw-r--r-- | tooling/fsck.hefs.json | 16 |
2 files changed, 31 insertions, 0 deletions
diff --git a/tooling/fsck.hefs.cc b/tooling/fsck.hefs.cc new file mode 100644 index 00000000..d566e2a6 --- /dev/null +++ b/tooling/fsck.hefs.cc @@ -0,0 +1,15 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal El Mahrouss, all rights reserved. + +------------------------------------------- */ + +#include <tooling/hefs.h> +#include <cstdlib> + +int main(int argc, char** argv) { + (void)(argc); + (void)(argv); + + return EXIT_FAILURE; +}
\ No newline at end of file diff --git a/tooling/fsck.hefs.json b/tooling/fsck.hefs.json new file mode 100644 index 00000000..d6ff4b0f --- /dev/null +++ b/tooling/fsck.hefs.json @@ -0,0 +1,16 @@ +{ + "compiler_path": "g++", + "compiler_std": "c++20", + "headers_path": [ + "../" + ], + "sources_path": [ + "fsck.hefs.cc" + ], + "output_name": "./dist/fsck.hefs", + "cpp_macros": [ + "kFSCKHEFSVersion=0x0100", + "kFSCKHEFSVersionHighest=0x0100", + "kFSCKHEFSVersionLowest=0x0100" + ] +}
\ No newline at end of file |
