mirror of https://git.wuffs.org/MWCC
17 lines
338 B
C
17 lines
338 B
C
#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;
|
|
}
|