summaryrefslogtreecommitdiff
path: root/soldep/inc/XmlBuildListDef.hxx
blob: 94e8e3d6143c390c1064fe686c02e043b0aadd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _XMLBUILDLISTDEF_HXX
#define _XMLBUILDLISTDEF_HXX

enum DepTypes
{
    mdsimple,
    mdalways,
    mdforce
};

#define DEP_MD_SIMPLE   1;
#define DEP_MD_ALWAYS   2;
#define DEP_MD_FORCE    4;

static const char * DEP_MD_SIMPLE_STR = "md-simple";
static const char * DEP_MD_ALWAYS_STR = "md-always";
static const char * DEP_MD_FORCE_STR  = "md-force";
static const char * XML_ALL  =  "all";

#endif