6 #include <msp/datafile/loader.h>
10 Stores information about compiler command line parameters in a more abstract
11 form. Allows combining with other BuildInfos to support package dependencies.
16 class Loader: public Msp::DataFile::Loader
24 void cflag(const std::string &);
25 void incpath(const std::string &);
26 void define(const std::string &);
27 void ldflag(const std::string &);
28 void libpath(const std::string &);
29 void library(const std::string &);
30 void warning(const std::string &);
41 /** Adds another BuildInfo to the end of this one. */
42 void add(const BuildInfo &);
44 /** Makes sure there are no duplicate entries in the lists. For warnings,
45 contradicting flags are eliminated and the last one stays in effect. */