From aa43a14ebb7551cdb0116a73dcfb0b2a5bee5dbe Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 24 Jul 2025 09:24:43 +0100 Subject: fix: example_02_libnebuild: fix include lookup and windows build. Signed-off-by: Amlal El Mahrouss --- examples/example_02_libnebuild/libnebuild.cc | 2 +- examples/example_02_libnebuild/win64.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') 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) { diff --git a/examples/example_02_libnebuild/win64.json b/examples/example_02_libnebuild/win64.json index a873f5d..3118a36 100644 --- a/examples/example_02_libnebuild/win64.json +++ b/examples/example_02_libnebuild/win64.json @@ -2,7 +2,7 @@ "compiler_path": "x86_64-w64-mingw32-g++", "compiler_std": "c++20", "headers_path": [ - "../../", + "../../dev", "../../vendor" ], "sources_path": [ -- cgit v1.2.3