Revision 162cf193
Von admin vor mehr als 4 Jahren hinzugefügt
tools/gwenbuild/parser/p_project.c | ||
---|---|---|
#include "gwenbuild/parser/p_checkheaders.h"
|
||
#include "gwenbuild/parser/p_checklibs.h"
|
||
#include "gwenbuild/parser/p_checkcompiler.h"
|
||
#include "gwenbuild/parser/p_checkprogs.h"
|
||
#include "gwenbuild/parser/p_dependencies.h"
|
||
#include "gwenbuild/parser/p_options.h"
|
||
#include "gwenbuild/parser/p_target.h"
|
||
... | ... | |
rv=GWB_ParseCheckFunctions(project, currentContext, n);
|
||
else if (strcasecmp(name, "checklibs")==0)
|
||
rv=GWB_ParseCheckLibs(project, currentContext, n);
|
||
else if (strcasecmp(name, "checkprogs")==0)
|
||
rv=GWB_ParseCheckProgs(project, currentContext, n);
|
||
else if (strcasecmp(name, "checkCompiler")==0)
|
||
rv=GWB_ParseCheckCompiler(project, currentContext, n);
|
||
else if (strcasecmp(name, "target")==0)
|
Auch abrufbar als: Unified diff
gwenbuild: Added "<checkProgs>".
Can now look for programs within a given path (or default $PATH) and even
under different names.