nmake/src/Tools/BuildDir.ts
2024-08-12 14:29:07 +08:00

14 lines
410 B
TypeScript

import path from "path"
import { getGlobalNmake } from "./GlobalNmake.js"
import { getNmakeDir } from "./NmakeDir.js"
export const getBuildDir = ():string=>{
if(getGlobalNmake()["buildDir"]==undefined){
getGlobalNmake()["buildDir"]=path.join(getNmakeDir(),"build")
}
return getGlobalNmake()["buildDir"]
}
export const setBuildDir = (path:string)=>{
getGlobalNmake()["buildDir"]=path
}