summaryrefslogtreecommitdiffhomepage
path: root/targets
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 20:35:28 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-09 20:35:28 +0100
commit4e6fd1dd8c9762ea6543ec275fe57ca474f23d8f (patch)
tree39ec629f5b80beb10919677fd12d7b258aaa2e14 /targets
parent26783733863f62c468a4c8cb2853badd54e30a39 (diff)
chore: codebase modernization and hygiene improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'targets')
-rw-r--r--targets/osx-dylib.json10
-rw-r--r--targets/osx.json10
-rw-r--r--targets/posix-dylib.json10
-rw-r--r--targets/posix.json10
-rw-r--r--targets/win64.json10
5 files changed, 0 insertions, 50 deletions
diff --git a/targets/osx-dylib.json b/targets/osx-dylib.json
deleted file mode 100644
index d5b87bc..0000000
--- a/targets/osx-dylib.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "clang++",
- "compiler_std": "c++20",
- "headers_path": ["include", "vendor"],
- "sources_path": ["src/lib/*.cc"],
- "output_name": "libNeBuildKit.dylib",
- "compiler_flags": ["-fPIC", "-shared"],
- "cpp_macros": ["NEBUILD_DYLIB", "NEBUILD_OSX"],
- "run_after_build": false
-}
diff --git a/targets/osx.json b/targets/osx.json
deleted file mode 100644
index bdcab49..0000000
--- a/targets/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/targets/posix-dylib.json b/targets/posix-dylib.json
deleted file mode 100644
index 3326b3e..0000000
--- a/targets/posix-dylib.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "clang++",
- "compiler_std": "c++20",
- "headers_path": ["include/", "vendor"],
- "sources_path": ["src/lib/*.cc"],
- "output_name": "libNeBuildKit.so",
- "compiler_flags": ["-fPIC", "-shared"],
- "cpp_macros": ["NEBUILD_POSIX", "NEBUILD_DYLIB"],
- "run_after_build": false
-}
diff --git a/targets/posix.json b/targets/posix.json
deleted file mode 100644
index 679296c..0000000
--- a/targets/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/targets/win64.json b/targets/win64.json
deleted file mode 100644
index 75c025a..0000000
--- a/targets/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
-}