summaryrefslogtreecommitdiffhomepage
path: root/examples/example_02_libnebuild/libnebuild.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example_02_libnebuild/libnebuild.cc')
-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);