Automatically exclude llvm and boost submodules in gradle project

There is a god in this world... his name is bylaws
This commit is contained in:
Billy Laws 2022-06-06 23:05:39 +01:00
parent a5ca370c36
commit 42c365fe70

View File

@ -3,6 +3,13 @@ plugins {
id 'kotlin-android'
id 'kotlin-kapt'
id 'dagger.hilt.android.plugin'
id 'idea'
}
idea.module {
// These are not viable to index on most systems to exclude them to prevent IDE crashes
excludeDirs.add(file("libraries/boost"))
excludeDirs.add(file("libraries/llvm"))
}
android {