default platform + impl all functions

This commit is contained in:
Hunter 2024-09-29 11:07:13 -04:00
parent 8ff3047aec
commit f32bf63c98
10 changed files with 72 additions and 45 deletions

View file

@ -136,15 +136,6 @@ struct GlobalConfig {
};
```
## OptionalFileType
```
enum OptionalFileType {
OFileType_IsWin32,
OFileType_IsUnix,
OFileType_IsLinux
};
```
## Platform
```c++
struct Platform {
@ -171,14 +162,4 @@ enum LanguageType {
LanguageType_CPP,
LanguageType_C
};
```
## Profile
```c++
struct Profile {
string name;
Array<string> compiler_flags;
Array<string> linker_flags;
};
```