Started work on build system

This commit is contained in:
2025-05-31 00:42:18 +03:00
parent b83078553e
commit 953cca2aa4
16 changed files with 389 additions and 0 deletions

8
fpc/build.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "helper.h"
int build_fpc()
{
V_printf("cool\n");
return 0;
};
DECLARE_BUILD_STAGE(fpc, build_fpc);