diff options
Diffstat (limited to 'dev/DDK/ddk.json')
| -rw-r--r-- | dev/DDK/ddk.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev/DDK/ddk.json b/dev/DDK/ddk.json new file mode 100644 index 00000000..b930f99c --- /dev/null +++ b/dev/DDK/ddk.json @@ -0,0 +1,24 @@ +{ + "compiler_path": "x86_64-w64-mingw32-gcc", + "compiler_std": "c++20", + "headers_path": ["../", "./"], + "sources_path": ["*.c", "*.cxx", "*.S"], + "output_name": "ddk.dll", + "compiler_flags": [ + "-ffreestanding", + "-shared", + "-std=c17", + "-std=c++20", + "-fno-rtti", + "-fno-exceptions", + " -Wl,--subsystem=17" + ], + "cpp_macros": [ + "__NEWOSKRNL__", + "__DDK_AMD64__", + "__DDK__", + "cDDKVersionHighest=0x0100", + "cDDKVersionLowest=0x0100", + "cDDKVersion=0x0100" + ] +} |
