From e1d5089d237a34c4977cdf5dfa65c9f58b351d11 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 19 Feb 2026 07:49:30 +0100 Subject: chore: build: project infra tweaks. Signed-off-by: Amlal El Mahrouss --- scripts/osx-dylib.json | 2 +- scripts/posix-dylib.json | 2 +- scripts/win64-dylib.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/osx-dylib.json b/scripts/osx-dylib.json index 0426f4e..675a231 100644 --- a/scripts/osx-dylib.json +++ b/scripts/osx-dylib.json @@ -2,7 +2,7 @@ "compiler_path": "clang++", "compiler_std": "c++20", "headers_path": ["include", "vendor"], - "sources_path": ["src/lib/*.cc"], + "sources_path": ["src/lib/*.cpp"], "output_name": "libNeBuildKit.dylib", "compiler_flags": ["-fPIC", "-shared"], "cpp_macros": ["NEBUILD_INTERNAL_SDK", "NEBUILD_OSX"], diff --git a/scripts/posix-dylib.json b/scripts/posix-dylib.json index 17c37a7..5d1b9d1 100644 --- a/scripts/posix-dylib.json +++ b/scripts/posix-dylib.json @@ -2,7 +2,7 @@ "compiler_path": "clang++", "compiler_std": "c++20", "headers_path": ["include/", "vendor"], - "sources_path": ["src/lib/*.cc"], + "sources_path": ["src/lib/*.cpp"], "output_name": "libNeBuildKit.so", "compiler_flags": ["-fPIC", "-shared"], "cpp_macros": ["NEBUILD_POSIX", "NEBUILD_INTERNAL_SDK"], diff --git a/scripts/win64-dylib.json b/scripts/win64-dylib.json index d7c9f0e..5a88251 100644 --- a/scripts/win64-dylib.json +++ b/scripts/win64-dylib.json @@ -2,7 +2,7 @@ "compiler_path": "x86_64-w64-mingw32-g++.exe", "compiler_std": "c++20", "headers_path": ["include", "vendor"], - "sources_path": ["src/lib/*.cc"], + "sources_path": ["src/lib/*.cpp"], "output_name": "libNeBuildKit.dll", "compiler_flags": ["-fPIC", "-shared"], "cpp_macros": ["NEBUILD_WINDOWS", "NEBUILD_INTERNAL_SDK"], -- cgit v1.2.3