summaryrefslogtreecommitdiffhomepage
path: root/dev/SEC
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-23 12:15:52 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-23 12:15:52 +0200
commitf5ed9f8a41b760a659e23f8c2a72d1ca73f3b826 (patch)
tree87e8d51550a891f69cbad8d68c8cac96c49affed /dev/SEC
parent4cd60b0edc5dee45d6a0e31931f79dff4d611865 (diff)
[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 <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/SEC')
-rw-r--r--dev/SEC/.keep0
-rw-r--r--dev/SEC/build.json21
2 files changed, 21 insertions, 0 deletions
diff --git a/dev/SEC/.keep b/dev/SEC/.keep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/dev/SEC/.keep
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"
+ ]
+}