From 0760932c4532cdfcb15a68cbf5a16d0845d0e9f7 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 30 Jan 2026 08:06:09 +0100 Subject: feat: Windows DLL support, descriptions support. Signed-off-by: Amlal El Mahrouss --- scripts/osx.json | 10 ---------- scripts/posix.json | 10 ---------- scripts/win64-dylib.json | 10 ++++++++++ scripts/win64.json | 10 ---------- 4 files changed, 10 insertions(+), 30 deletions(-) delete mode 100644 scripts/osx.json delete mode 100644 scripts/posix.json create mode 100644 scripts/win64-dylib.json delete mode 100644 scripts/win64.json (limited to 'scripts') diff --git a/scripts/osx.json b/scripts/osx.json deleted file mode 100644 index bdcab49..0000000 --- a/scripts/osx.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compiler_path": "clang++", - "compiler_std": "c++20", - "headers_path": ["include", "vendor"], - "sources_path": ["src/lib/*.cc", "src/cli/*.cc"], - "output_name": "nebuild", - "compiler_flags": ["-fPIC"], - "cpp_macros": ["NEBUILD_POSIX", "NEBUILD_OSX"], - "run_after_build": false -} diff --git a/scripts/posix.json b/scripts/posix.json deleted file mode 100644 index 679296c..0000000 --- a/scripts/posix.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compiler_path": "clang++", - "compiler_std": "c++20", - "headers_path": ["include/", "vendor"], - "sources_path": ["src/lib/*.cc", "src/cli/*.cc"], - "output_name": "nebuild", - "compiler_flags": ["-fPIC"], - "cpp_macros": ["NEBUILD_POSIX"], - "run_after_build": false -} diff --git a/scripts/win64-dylib.json b/scripts/win64-dylib.json new file mode 100644 index 0000000..d7c9f0e --- /dev/null +++ b/scripts/win64-dylib.json @@ -0,0 +1,10 @@ +{ + "compiler_path": "x86_64-w64-mingw32-g++.exe", + "compiler_std": "c++20", + "headers_path": ["include", "vendor"], + "sources_path": ["src/lib/*.cc"], + "output_name": "libNeBuildKit.dll", + "compiler_flags": ["-fPIC", "-shared"], + "cpp_macros": ["NEBUILD_WINDOWS", "NEBUILD_INTERNAL_SDK"], + "run_after_build": false +} diff --git a/scripts/win64.json b/scripts/win64.json deleted file mode 100644 index 75c025a..0000000 --- a/scripts/win64.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compiler_path": "x86_64-w64-mingw32-g++.exe", - "compiler_std": "c++20", - "headers_path": ["include", "vendor"], - "sources_path": ["src/lib/*.cc", "src/cli/*.cc"], - "output_name": "nebuild.exe", - "compiler_flags": ["-fPIC"], - "cpp_macros": ["NEBUILD_WINDOWS"], - "run_after_build": false -} -- cgit v1.2.3