From f5ed9f8a41b760a659e23f8c2a72d1ca73f3b826 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 23 Aug 2024 12:15:52 +0200 Subject: [WIP] Adding Security system DLL for handling user logins and logoffs. - Fixing local user API. This API is used by the objects in order to gain authorization over another object. - Refer to sec.dll for mutli-user experience. Signed-off-by: Amlal El Mahrouss --- dev/SEC/.keep | 0 dev/SEC/build.json | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 dev/SEC/.keep create mode 100644 dev/SEC/build.json (limited to 'dev/SEC') diff --git a/dev/SEC/.keep b/dev/SEC/.keep new file mode 100644 index 00000000..e69de29b diff --git a/dev/SEC/build.json b/dev/SEC/build.json new file mode 100644 index 00000000..a22d0f1f --- /dev/null +++ b/dev/SEC/build.json @@ -0,0 +1,21 @@ +{ + "compiler_path": "x86_64-w64-mingw32-g++", + "compiler_std": "c++20", + "headers_path": ["../"], + "sources_path": ["Sources/*.cxx"], + "output_name": "sec.dll", + "compiler_flags": [ + "-fPIC", + "-ffreestanding", + "-shared", + "-fno-rtti", + "-fno-exceptions", + "-Wl,--subsystem=17" + ], + "cpp_macros": [ + "__SEC_IMPL__", + "cSECVersion=0x0100", + "cSECVersionHighest=0x0100", + "cSECVersionLowest=0x0100" + ] +} -- cgit v1.2.3