X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackage.h;h=75ef358f2c2d675150a10fa04cc546e590f6be5c;hb=921fc49488a68442fb8794e1a0284a3bf1e7b91b;hp=52338ccb501d2c38db1d4141bdcca65a53b10bc5;hpb=6613371a07a1a9a8d5dead488092015261a9bf5f;p=builder.git diff --git a/source/package.h b/source/package.h index 52338cc..75ef358 100644 --- a/source/package.h +++ b/source/package.h @@ -6,7 +6,9 @@ #include #include "buildinfo.h" #include "component.h" +#include "condition.h" #include "config.h" +#include "feature.h" #include "packageref.h" class Builder; @@ -41,8 +43,11 @@ public: Package &pkg; void require(const std::string &); + void feature(const std::string &, const std::string &); + void condition(const std::string &); void program(const std::string &); void library(const std::string &); + void module(const std::string &); void headers(const std::string &); void build_info(); }; @@ -53,6 +58,9 @@ public: const std::string &get_version() const { return version; } const std::string &get_description() const { return description; } const Msp::Path::Path &get_source() const { return source; } + Msp::Path::Path get_temp_dir() const; + Msp::Path::Path get_out_dir() const; + Msp::Path::Path get_prefix() const { return config.get_option("prefix").value; } const ComponentList &get_components() const { return components; } bool get_buildable() const { return buildable; } const Config &get_config() const { return config; } @@ -63,8 +71,10 @@ public: bool get_need_path() const { return need_path; } unsigned get_install_flags(); bool get_use_pkgconfig() const { return use_pkgconfig; } + const std::string &get_arch() const { return config.get_option("arch").value; } + LibMode get_library_mode() const; void resolve_refs(); - void configure(const RawOptionMap &, unsigned); + void configure(const StringMap &, unsigned); static Package *create(Builder &, const std::string &); private: @@ -78,8 +88,10 @@ private: Msp::Path::Path source; PkgRefList requires; PackageList all_reqs; + FeatureList features; BuildInfo build_info; BuildInfo export_binfo; + ConditionList conditions; ComponentList components; Config config; bool conf_done;