summaryrefslogtreecommitdiff
path: root/command_line/CmdLine/Src/Project/CLProj.c
blob: 79b99ae220eb7ba6eb0f80e159ba96d2621c2d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
}