.ide Android builder now supports BLITZ.

git-svn-id: svn://ultimatepp.org/upp/trunk@10948 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2017-03-18 00:25:18 +00:00
parent 76a50c7880
commit 8b7ac3be2a
11 changed files with 92 additions and 65 deletions

View file

@ -18,6 +18,13 @@ void AndroidModuleMakeFileCreator::AddSources(Vector<String>& sources)
}
}
void AndroidModuleMakeFileCreator::AddSources(Index<String>& sources)
{
for(const String& source : sources) {
makeFile.AddSourceFile(source);
}
}
void AndroidModuleMakeFileCreator::AddInclude(const String& path)
{
makeFile.AddInclude(path);