summaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/osx-dylib.json2
-rw-r--r--scripts/posix-dylib.json2
-rw-r--r--scripts/win64-dylib.json2
3 files changed, 3 insertions, 3 deletions
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"],