summaryrefslogtreecommitdiffhomepage
path: root/dev/SEC
diff options
context:
space:
mode:
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"
+ ]
+}