Ide: Limit number of Android c++ runtimes to the current NDK state.

git-svn-id: svn://ultimatepp.org/upp/trunk@15229 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2020-10-10 21:01:28 +00:00
parent 4fcf517a29
commit 154ff652aa
2 changed files with 6 additions and 35 deletions

View file

@ -864,8 +864,9 @@ String Ide::GetIncludePath()
MergeWith(include, ";", ndk.GetIncludeDir());
String cppIncludeDir = ndk.GetCppIncludeDir(bm.Get("NDK_CPP_RUNTIME", ""));
if(!cppIncludeDir.IsEmpty())
if(!cppIncludeDir.IsEmpty()) {
MergeWith(include, ";", cppIncludeDir);
}
}
}