From bd5c36bd32e0a6fbb8d296e748f77f77ccba2b2c Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 31 Mar 2022 06:57:53 -0700 Subject: [PATCH] DocPrep update --- BeefTools/DocPrep/src/Program.bf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BeefTools/DocPrep/src/Program.bf b/BeefTools/DocPrep/src/Program.bf index 58e8bdd7..e5f3b320 100644 --- a/BeefTools/DocPrep/src/Program.bf +++ b/BeefTools/DocPrep/src/Program.bf @@ -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)