X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fandroidarchiver.cpp;fp=source%2Fandroidarchiver.cpp;h=0000000000000000000000000000000000000000;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=617445cb8dacb9e421587ece78484755e39c7e0c;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;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()); -}