summaryrefslogtreecommitdiffhomepage
path: root/examples/example_02_libnebuild/libnebuild.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-24 09:24:43 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-24 09:24:43 +0100
commitaa43a14ebb7551cdb0116a73dcfb0b2a5bee5dbe (patch)
tree4d31f0bf76dcb0393c2a46a6f1941629a12ba115 /examples/example_02_libnebuild/libnebuild.cc
parentc2ebe8fd7195c24293cb48c7ec57b194e70c6a63 (diff)
fix: example_02_libnebuild: fix include lookup and windows build.
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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example_02_libnebuild/libnebuild.cc b/examples/example_02_libnebuild/libnebuild.cc
index e6e489d..ddd77ed 100644
--- a/examples/example_02_libnebuild/libnebuild.cc
+++ b/examples/example_02_libnebuild/libnebuild.cc
@@ -4,7 +4,7 @@
#ifndef _WIN32
static auto kPath = "./posix.json";
#else
-static auto kPath = ".\win64.json";
+static auto kPath = ".\\win64.json";
#endif
int main(int argc, char** argv) {