1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

DocPrep update

This commit is contained in:
Brian Fiete 2022-03-31 06:57:53 -07:00
parent 84e5a88183
commit bd5c36bd32

View file

@ -42,7 +42,7 @@ namespace DocPrep
static extern char8* BfParser_Prep*/
[CallingConvention(.Stdcall), CLink]
static extern void* BfSystem_CreateProject(void* bfSystem, char8* projectName);
static extern void* BfSystem_CreateProject(void* bfSystem, char8* projectName, char8* projectDir);
String mSrcDirPath;
String mDestDirPath;
@ -53,7 +53,7 @@ namespace DocPrep
this()
{
mSystem = BfSystem_Create();
mProject = BfSystem_CreateProject(mSystem, "main");
mProject = BfSystem_CreateProject(mSystem, "main", "");
}
void GenFile(String relFilePath)