mirror of https://git.wuffs.org/MWCC
16 lines
329 B
C
16 lines
329 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) {
|
|
OS_ASSERT(25, this != NULL);
|
|
|
|
Targets_Term(this->targets);
|
|
return 1;
|
|
}
|