X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fandroidarchiver.cpp;h=58cbefa9f9ea8abbf03195f3f951e074ead5ec71;hb=HEAD;hp=617445cb8dacb9e421587ece78484755e39c7e0c;hpb=354bb72645fed7f560d909bd6487933526cba036;p=builder.git diff --git a/source/androidarchiver.cpp b/source/androidarchiver.cpp deleted file mode 100644 index 617445c..0000000 --- a/source/androidarchiver.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "androidarchiver.h" -#include "androidtools.h" - -AndroidArchiver::AndroidArchiver(Builder &b, const Architecture &a, const AndroidNdk &ndk): - CustomizedTool(b, "AR", a) -{ - set_command("ar", true); - if(ndk.get_root_dir().empty()) - problems.push_back("Android NDK not found"); - else if(ndk.get_bin_dir().empty()) - problems.push_back("Android NDK toolchain not found"); - else - set_command((ndk.get_bin_dir()/command).str()); -}