X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flib%2Fsourcepackage.cpp;h=dabda21c99735ec0983171ccba76682848044c87;hb=a8dd31308dfef6da930c261779d4e9ebfc2af838;hp=6261d2c844ba42fbdb283bf5e56ed8a4ec88cef1;hpb=c26f1550706f1f674d3040ebb42d2b35d21952ff;p=builder.git diff --git a/source/lib/sourcepackage.cpp b/source/lib/sourcepackage.cpp index 6261d2c..dabda21 100644 --- a/source/lib/sourcepackage.cpp +++ b/source/lib/sourcepackage.cpp @@ -5,11 +5,9 @@ #include #include #include -#include "android/androidapplicationcomponent.h" #include "binarycomponent.h" #include "binarypackage.h" #include "builder.h" -#include "datafile/datapackcomponent.h" #include "file.h" #include "installcomponent.h" #include "plugin.h" @@ -67,6 +65,11 @@ FS::Path SourcePackage::get_output_directory() const return source_dir/arch.get_name(); } +FS::Path SourcePackage::get_staging_directory() const +{ + return get_temp_directory()/"staging"; +} + const Component &SourcePackage::get_component(const string &n) const { auto i = find_if(components, [&n](const Component *c){ return c->get_name()==n; }); @@ -99,8 +102,9 @@ void SourcePackage::do_prepare() final_build_info.update_from(build_info); build_info = final_build_info; - build_info.incpath.push_back((builder.get_prefix()/"include").str()); - build_info.libpath.push_back((builder.get_prefix()/"lib").str()); + build_info.incpath.push_back(get_staging_directory()/"include"); + build_info.incpath.push_back(builder.get_prefix()/"include"); + build_info.libpath.push_back(builder.get_prefix()/"lib"); for(const Feature &f: features) { @@ -155,10 +159,9 @@ SourcePackage::Loader::Loader(SourcePackage &p, const Config::InputOptions *o): FeatureConditional(p, p.name), options(o) { - add("android_application", &Loader::component); add("build_info", &Loader::build_info); - add("datapack", &Loader::component); add("description", &SourcePackage::description); + add("export", &Loader::exported); add("feature", &Loader::feature); add("generate", &Loader::generate); add("install", &Loader::component); @@ -186,6 +189,12 @@ void SourcePackage::Loader::finish() } } +void SourcePackage::Loader::exported() +{ + ExportLoader ldr(obj); + load_sub_with(ldr); +} + void SourcePackage::Loader::feature(const string &n, const string &d) { Feature feat(n); @@ -241,3 +250,18 @@ void SourcePackage::Loader::version(const string &v) break; obj.interface_version = obj.version.substr(0, i); } + + +SourcePackage::ExportLoader::ExportLoader(SourcePackage &p): + ObjectLoader(p) +{ + add("build_info", &ExportLoader::build_info); +} + +void SourcePackage::ExportLoader::build_info() +{ + BuildInfo bi; + load_sub(bi); + obj.build_info.update_from(bi); + obj.export_binfo.update_from(bi); +}