Android: Disable building unit tests by default

This reduces the build time for incremental builds from about
2 minutes to about 20 seconds. Most people never run the
unit tests on Android anyway (I'm not aware of anyone other
than me ever having done it).
This commit is contained in:
JosJuice 2021-05-25 22:52:50 +02:00
parent ff08b85740
commit 82e9c1c68a

View File

@ -73,6 +73,9 @@ android {
arguments "-DANDROID_STL=c++_static", "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
// , "-DENABLE_GENERIC=ON"
abiFilters "arm64-v8a", "x86_64" //, "armeabi-v7a", "x86"
// Remove the line below if you want to build the C++ unit tests
targets "main"
}
}
}