Fix files not using relative includes

This commit is contained in:
Abdelrahman Said 2025-02-24 07:58:22 +00:00
parent 4c14588d92
commit fa1d9eec0d
3 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
#define WAPP_TESTING_C #define WAPP_TESTING_C
#include "wapp_testing.h" #include "wapp_testing.h"
#include "tester.c" #include "tester/tester.c"
#include "wapp_core.c" #include "../core/wapp_core.c"
#endif // !WAPP_TESTING_C #endif // !WAPP_TESTING_C

View File

@ -2,7 +2,7 @@
#define WAPP_C #define WAPP_C
#include "wapp.h" #include "wapp.h"
#include "wapp_core.c" #include "core/wapp_core.c"
#include "wapp_testing.c" #include "testing/wapp_testing.c"
#endif // !WAPP_C #endif // !WAPP_C

View File

@ -1,8 +1,8 @@
#ifndef WAPP_H #ifndef WAPP_H
#define WAPP_H #define WAPP_H
#include "wapp_common.h" #include "common/wapp_common.h"
#include "wapp_core.h" #include "core/wapp_core.h"
#include "wapp_testing.h" #include "testing/wapp_testing.h"
#endif // !WAPP_H #endif // !WAPP_H