Initial support for Android deployment on Mac

[CL 2386013 by Michael Trepka in Main branch]
This commit is contained in:
Michael Trepka
2014-12-11 15:30:24 -05:00
committed by UnrealBot
parent a0da4de644
commit 9c522df7ef
8 changed files with 127 additions and 57 deletions

View File

@@ -260,7 +260,11 @@ public:
return;
}
#if PLATFORM_WINDOWS
FString ADBPath = FString::Printf(TEXT("%s\\platform-tools\\adb.exe"), AndroidDirectory);
#else
FString ADBPath = FString::Printf(TEXT("%s/platform-tools/adb"), AndroidDirectory);
#endif
// if it doesn't exist, no SDK installed, so don't bother creating a thread to look for devices
if (!FPaths::FileExists(*ADBPath))