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