X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fandroidtools.h;h=dfa8a11a09946ba4a1020a298ee99e00b0688958;hb=HEAD;hp=3ccedcbdb9ef44ac1417abd0de8a6e8bdb9ae496;hpb=cee450d7cc932811b0d119a132bc9981eb480584;p=builder.git diff --git a/source/androidtools.h b/source/androidtools.h deleted file mode 100644 index 3ccedcb..0000000 --- a/source/androidtools.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef ANDROIDTOOLS_H_ -#define ANDROIDTOOLS_H_ - -#include -#include "toolchain.h" - -class Architecture; -class Builder; - -class AndroidNdk -{ -private: - Builder &builder; - const Architecture &architecture; - Msp::FS::Path ndk_root; - Msp::FS::Path bin_dir; - Msp::FS::Path platform_sysroot; - -public: - AndroidNdk(Builder &, const Architecture &); - -private: - void find_toolchain_dir(); - void find_platform_dir(); - -public: - const Msp::FS::Path &get_root_dir() const { return ndk_root; } - const Msp::FS::Path &get_bin_dir() const { return bin_dir; } - const Msp::FS::Path &get_platform_sysroot() const { return platform_sysroot; } -}; - - -class AndroidTools: public Toolchain -{ -private: - AndroidNdk ndk; - -public: - AndroidTools(Builder &, const Architecture &); -}; - -#endif