sidetrack: doing some basic gen library metaprogram bootstrapping

This commit is contained in:
2025-02-08 14:38:20 -05:00
parent af2c9eceaa
commit 558cda3524
8 changed files with 433 additions and 411 deletions
+19
View File
@@ -0,0 +1,19 @@
#pragma once
#include "third_party/gencpp_c11/push_ignores.inline.h"
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
#define GEN_ENFORCE_STRONG_CODE_TYPES
#define GEN_IMPLEMENTATION
#include "third_party/gencpp_c11/gencpp_c11.h"
#include "third_party/gencpp_c11/misc.h"
int main()
{
gen_Context ctx = {0};
gen_init(& ctx);
return 0;
}