AndroidBuilder now full independent from ide

git-svn-id: svn://ultimatepp.org/upp/trunk@9061 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2015-10-20 21:56:47 +00:00
parent d6c04cdb4c
commit a188d7d64a
14 changed files with 116 additions and 80 deletions

9
uppsrc/ide/Android.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "ide.h"
String Ide::GetAndroidSdkPath()
{
VectorMap<String, String> bm = GetMethodVars(method);
if(bm.Get("BUILDER") == "ANDROID")
return bm.Get("SDK_PATH");
return String();
}