mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
9 lines
196 B
C++
9 lines
196 B
C++
#include "ide.h"
|
|
|
|
String Ide::GetAndroidSdkPath()
|
|
{
|
|
VectorMap<String, String> bm = GetMethodVars(method);
|
|
if(bm.Get("BUILDER", "") == "ANDROID")
|
|
return bm.Get("SDK_PATH");
|
|
return String();
|
|
}
|