diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-09 20:35:28 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-09 20:35:28 +0100 |
| commit | 4e6fd1dd8c9762ea6543ec275fe57ca474f23d8f (patch) | |
| tree | 39ec629f5b80beb10919677fd12d7b258aaa2e14 /examples/example_02_libnebuild/libnebuild.cc | |
| parent | 26783733863f62c468a4c8cb2853badd54e30a39 (diff) | |
chore: codebase modernization and hygiene improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples/example_02_libnebuild/libnebuild.cc')
| -rw-r--r-- | examples/example_02_libnebuild/libnebuild.cc | 6 |
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); |
