MWCC/command_line/CmdLine/Src/Project/CLProj.c

17 lines
338 B
C
Raw Normal View History

#include "cmdline.h"
Boolean Proj_Initialize(Project *this) {
this->targets = NULL;
OS_GetCWD(&this->projectDirectory.path);
OS_MakeNameSpec("", &this->projectDirectory.name);
return 1;
}
Boolean Proj_Terminate(Project *this) {
#line 25
OPTION_ASSERT(this != NULL);
Targets_Term(this->targets);
return 1;
}