2020-11-17 14:31:06 +00:00
|
|
|
import java.nio.file.Paths
|
2018-11-06 01:08:46 +00:00
|
|
|
|
2018-03-12 19:40:25 +00:00
|
|
|
// General gradle arguments for root project
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-11-06 01:08:46 +00:00
|
|
|
//
|
2020-11-17 14:31:06 +00:00
|
|
|
// https://developer.android.com/studio/releases/gradle-plugin#updating-gradle
|
2018-11-06 01:08:46 +00:00
|
|
|
//
|
2020-11-17 14:31:06 +00:00
|
|
|
// Notice that 4.0.0 here is the version of [Android Gradle Plugin]
|
|
|
|
// Accroding to URL above you will need Gradle 6.1 or higher
|
2018-11-06 01:08:46 +00:00
|
|
|
//
|
2020-11-17 14:31:06 +00:00
|
|
|
classpath "com.android.tools.build:gradle:4.1.1"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-02 16:54:00 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
2018-03-12 19:40:25 +00:00
|
|
|
|
2020-11-17 14:31:06 +00:00
|
|
|
// Project's root where CMakeLists.txt exists: rootDir/support/.cxx -> rootDir
|
|
|
|
def rootDir = Paths.get(project.buildDir.getParent()).getParent()
|
|
|
|
println("rootDir: ${rootDir}")
|
|
|
|
|
|
|
|
// Output: Shared library (.so) for Android
|
|
|
|
apply plugin: "com.android.library"
|
2018-03-12 19:40:25 +00:00
|
|
|
android {
|
|
|
|
compileSdkVersion 25 // Android 7.0
|
|
|
|
|
|
|
|
// Target ABI
|
|
|
|
// - This option controls target platform of module
|
|
|
|
// - The platform might be limited by compiler's support
|
|
|
|
// some can work with Clang(default), but some can work only with GCC...
|
|
|
|
// if bad, both toolchains might not support it
|
|
|
|
splits {
|
|
|
|
abi {
|
|
|
|
enable true
|
|
|
|
// Specify platforms for Application
|
|
|
|
reset()
|
2018-11-02 16:54:00 +00:00
|
|
|
include "arm64-v8a", "armeabi-v7a", "x86_64"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-17 14:31:06 +00:00
|
|
|
ndkVersion "21.3.6528147" // ANDROID_NDK_HOME is deprecated. Be explicit
|
2018-03-12 19:40:25 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21 // Android 5.0+
|
|
|
|
targetSdkVersion 25 // Follow Compile SDK
|
2020-11-17 14:31:06 +00:00
|
|
|
versionCode 34 // Follow release count
|
|
|
|
versionName "7.1.2" // Follow Official version
|
2018-03-12 19:40:25 +00:00
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
arguments "-DANDROID_STL=c++_shared" // Specify Android STL
|
|
|
|
arguments "-DBUILD_SHARED_LIBS=true" // Build shared object
|
|
|
|
arguments "-DFMT_TEST=false" // Skip test
|
|
|
|
arguments "-DFMT_DOC=false" // Skip document
|
2018-11-02 16:54:00 +00:00
|
|
|
cppFlags "-std=c++17"
|
2020-11-17 14:31:06 +00:00
|
|
|
targets "fmt"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
println(externalNativeBuild.cmake.cppFlags)
|
|
|
|
println(externalNativeBuild.cmake.arguments)
|
|
|
|
}
|
|
|
|
|
|
|
|
// External Native build
|
|
|
|
// - Use existing CMakeList.txt
|
|
|
|
// - Give path to CMake. This gradle file should be
|
|
|
|
// neighbor of the top level cmake
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2020-11-17 14:31:06 +00:00
|
|
|
version "3.10.0+"
|
|
|
|
path "${rootDir}/CMakeLists.txt"
|
2018-03-12 19:40:25 +00:00
|
|
|
// buildStagingDirectory "./build" // Custom path for cmake output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets{
|
|
|
|
// Android Manifest for Gradle
|
|
|
|
main {
|
2020-11-17 14:31:06 +00:00
|
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://developer.android.com/studio/build/native-dependencies#build_system_configuration
|
|
|
|
buildFeatures {
|
|
|
|
prefab true
|
|
|
|
prefabPublishing true
|
|
|
|
}
|
|
|
|
prefab {
|
|
|
|
fmt {
|
|
|
|
headers "${rootDir}/include"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assemble.doLast
|
|
|
|
{
|
|
|
|
// Instead of `ninja install`, Gradle will deploy the files.
|
|
|
|
// We are doing this since FMT is dependent to the ANDROID_STL after build
|
|
|
|
copy {
|
2020-11-17 14:31:06 +00:00
|
|
|
from "build/intermediates/cmake"
|
|
|
|
into "${rootDir}/libs"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
// Copy debug binaries
|
|
|
|
copy {
|
2020-11-17 14:31:06 +00:00
|
|
|
from "${rootDir}/libs/debug/obj"
|
|
|
|
into "${rootDir}/libs/debug"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
// Copy Release binaries
|
|
|
|
copy {
|
2020-11-17 14:31:06 +00:00
|
|
|
from "${rootDir}/libs/release/obj"
|
|
|
|
into "${rootDir}/libs/release"
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|
|
|
|
// Remove empty directory
|
2020-11-17 14:31:06 +00:00
|
|
|
delete "${rootDir}/libs/debug/obj"
|
|
|
|
delete "${rootDir}/libs/release/obj"
|
|
|
|
|
|
|
|
// Copy AAR files. Notice that the aar is named after the folder of this script.
|
|
|
|
copy {
|
|
|
|
from "build/outputs/aar/support-release.aar"
|
|
|
|
into "${rootDir}/libs"
|
|
|
|
rename "support-release.aar", "fmt-release.aar"
|
|
|
|
}
|
|
|
|
copy {
|
|
|
|
from "build/outputs/aar/support-debug.aar"
|
|
|
|
into "${rootDir}/libs"
|
|
|
|
rename "support-debug.aar", "fmt-debug.aar"
|
|
|
|
}
|
2018-03-12 19:40:25 +00:00
|
|
|
}
|