Add single header and single source entries for all components as well as the full library (#2)

Reviewed-on: #2
Co-authored-by: Abdelrahman <said.abdelrahman89@gmail.com>
Co-committed-by: Abdelrahman <said.abdelrahman89@gmail.com>
This commit was merged in pull request #2.
This commit is contained in:
2025-02-23 15:19:14 +00:00
committed by Abdelrahman Said
parent 4f5dd3900f
commit 491c742189
14 changed files with 136 additions and 4 deletions

17
src/os/wapp_os.c Normal file
View File

@@ -0,0 +1,17 @@
#ifndef WAPP_OS_C
#define WAPP_OS_C
#include "wapp_os.h"
#include "termcolour_win.c"
#include "termcolour_posix.c"
#include "termcolour.c"
#include "commander_win.c"
#include "commander.c"
#include "commander_posix.c"
#include "mem_utils_win.c"
#include "mem_utils.c"
#include "mem_utils_posix.c"
#include "cpath.c"
#include "wapp_core.c"
#endif // !WAPP_OS_C

17
src/os/wapp_os.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef WAPP_OS_H
#define WAPP_OS_H
#include "termcolour.h"
#include "terminal_colours.h"
#include "shell_utils.h"
#include "commander_output.h"
#include "commander.h"
#include "mem_utils_ops.h"
#include "mem_utils_win.h"
#include "mem_utils.h"
#include "mem_utils_posix.h"
#include "cpath.h"
#include "wapp_common.h"
#include "wapp_core.h"
#endif // !WAPP_OS_H