mirror of
https://github.com/0x221E/ibuild.git
synced 2026-01-18 02:42:20 +00:00
16 lines
210 B
C
16 lines
210 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include "string.h"
|
|
|
|
struct Configuration
|
|
{
|
|
StringView compiler_path;
|
|
StringView src_dir;
|
|
StringView* src_files;
|
|
};
|
|
|
|
typedef struct Configuration Configuration;
|
|
|
|
#endif
|