From fa1d9eec0d3da12daffa8937263e9ad9bd1be952 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Mon, 24 Feb 2025 07:58:22 +0000 Subject: [PATCH] Fix files not using relative includes --- src/testing/wapp_testing.c | 4 ++-- src/wapp.c | 4 ++-- src/wapp.h | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/testing/wapp_testing.c b/src/testing/wapp_testing.c index 24ce2db..41e0156 100644 --- a/src/testing/wapp_testing.c +++ b/src/testing/wapp_testing.c @@ -2,7 +2,7 @@ #define WAPP_TESTING_C #include "wapp_testing.h" -#include "tester.c" -#include "wapp_core.c" +#include "tester/tester.c" +#include "../core/wapp_core.c" #endif // !WAPP_TESTING_C diff --git a/src/wapp.c b/src/wapp.c index d46a763..a06939b 100644 --- a/src/wapp.c +++ b/src/wapp.c @@ -2,7 +2,7 @@ #define WAPP_C #include "wapp.h" -#include "wapp_core.c" -#include "wapp_testing.c" +#include "core/wapp_core.c" +#include "testing/wapp_testing.c" #endif // !WAPP_C diff --git a/src/wapp.h b/src/wapp.h index 9160b41..13e7fc6 100644 --- a/src/wapp.h +++ b/src/wapp.h @@ -1,8 +1,8 @@ #ifndef WAPP_H #define WAPP_H -#include "wapp_common.h" -#include "wapp_core.h" -#include "wapp_testing.h" +#include "common/wapp_common.h" +#include "core/wapp_core.h" +#include "testing/wapp_testing.h" #endif // !WAPP_H