diff options
| -rw-r--r-- | public/tools/make_fs/dist/.keep | 0 | ||||
| -rw-r--r-- | public/tools/make_fs/make_fs.cc | 16 | ||||
| -rw-r--r-- | public/tools/make_fs/make_fs.json | 12 |
3 files changed, 28 insertions, 0 deletions
diff --git a/public/tools/make_fs/dist/.keep b/public/tools/make_fs/dist/.keep new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/public/tools/make_fs/dist/.keep diff --git a/public/tools/make_fs/make_fs.cc b/public/tools/make_fs/make_fs.cc new file mode 100644 index 00000000..e114113b --- /dev/null +++ b/public/tools/make_fs/make_fs.cc @@ -0,0 +1,16 @@ +/* ------------------------------------------- + + Copyright (C) 2025, Amlal EL Mahrouss, all rights reserved. + + FILE: NeFS.h + PURPOSE: NeFS (New extended File System) support. + + ------------------------------------------- */ + +#include <FSKit/NeFS.h> + +int main(int argc, char** argv) +{ + + return 0; +}
\ No newline at end of file diff --git a/public/tools/make_fs/make_fs.json b/public/tools/make_fs/make_fs.json new file mode 100644 index 00000000..8134bab3 --- /dev/null +++ b/public/tools/make_fs/make_fs.json @@ -0,0 +1,12 @@ +{ + "compiler_path": "g++", + "compiler_std": "c++20", + "headers_path": ["./"], + "sources_path": ["make_fs.cc"], + "output_name": "./dist/make_fs", + "cpp_macros": [ + "kMKFSVersion=0x0100", + "kMKFSVersionHighest=0x0100", + "kMKFSVersionLowest=0x0100" + ] +} |
