summaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-31 11:17:44 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-31 11:19:11 +0100
commit635401b6a71dd7466604f25a1591ba324125d133 (patch)
tree2d51ffac16fcd51504982446f8aaa3dd11babbd1 /scripts
parentdcb52140c062e5cb7fafe04b292a0f98dd6be97d (diff)
feat: codebase improvements introduce 'b_internal' keyword for SDK code.v0.1.1v0.1.1-develop
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/osx-dylib.json2
-rw-r--r--scripts/posix-dylib.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/osx-dylib.json b/scripts/osx-dylib.json
index d5b87bc..0426f4e 100644
--- a/scripts/osx-dylib.json
+++ b/scripts/osx-dylib.json
@@ -5,6 +5,6 @@
"sources_path": ["src/lib/*.cc"],
"output_name": "libNeBuildKit.dylib",
"compiler_flags": ["-fPIC", "-shared"],
- "cpp_macros": ["NEBUILD_DYLIB", "NEBUILD_OSX"],
+ "cpp_macros": ["NEBUILD_INTERNAL_SDK", "NEBUILD_OSX"],
"run_after_build": false
}
diff --git a/scripts/posix-dylib.json b/scripts/posix-dylib.json
index 3326b3e..17c37a7 100644
--- a/scripts/posix-dylib.json
+++ b/scripts/posix-dylib.json
@@ -5,6 +5,6 @@
"sources_path": ["src/lib/*.cc"],
"output_name": "libNeBuildKit.so",
"compiler_flags": ["-fPIC", "-shared"],
- "cpp_macros": ["NEBUILD_POSIX", "NEBUILD_DYLIB"],
+ "cpp_macros": ["NEBUILD_POSIX", "NEBUILD_INTERNAL_SDK"],
"run_after_build": false
}