summaryrefslogtreecommitdiffhomepage
path: root/examples
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 /examples
parent26783733863f62c468a4c8cb2853badd54e30a39 (diff)
chore: codebase modernization and hygiene improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/example_02_libnebuild/libnebuild.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/example_02_libnebuild/libnebuild.cc b/examples/example_02_libnebuild/libnebuild.cc
index e707f6c..fffb962 100644
--- a/examples/example_02_libnebuild/libnebuild.cc
+++ b/examples/example_02_libnebuild/libnebuild.cc
@@ -2,15 +2,15 @@
int main(int argc, char** argv) {
#ifndef _WIN32
- constexpr auto kPath = "./posix.json";
+ constexpr auto path = "./posix.json";
#else
- constexpr auto kPath = ".\\win64.json";
+ constexpr auto path = ".\\win64.json";
#endif
NeBuild::JSONManifestBuilder builder;
NeBuild::BuildConfig config;
- config.path_ = kPath;
+ config.path_ = path;
config.dry_run_ = false;
return builder.BuildTarget(config);