Replace tabs with spaces in gradle files.

This commit is contained in:
Peter Johnson
2016-12-04 21:51:50 -08:00
parent 7c2f994a66
commit bdaf60b2d6
3 changed files with 15 additions and 15 deletions

View File

@@ -54,11 +54,11 @@ apply from: "dependencies.gradle"
ext.setupDefines = { project, binaries ->
binaries.all {
if (project.hasProperty('debug')) {
project.setupDebugDefines(cppCompiler, linker)
} else {
project.setupReleaseDefines(cppCompiler, linker)
}
if (project.hasProperty('debug')) {
project.setupDebugDefines(cppCompiler, linker)
} else {
project.setupReleaseDefines(cppCompiler, linker)
}
tasks.withType(CppCompile) {
if (!project.hasProperty('compilerPrefix') && targetPlatform.architecture.name == 'arm-v7') {
project.addWpiUtilSharedLibraryLinks(it, linker, targetPlatform)

View File

@@ -4,10 +4,10 @@ ext.buildPlatform = 'arm'
def compilerPrefix = project.hasProperty('compilerPrefix') ? project.compilerPrefix : 'arm-frc-linux-gnueabi-'
model {
platforms {
arm {
architecture 'arm'
operatingSystem 'linux'
}
arm {
architecture 'arm'
operatingSystem 'linux'
}
}
toolChains {
gcc(Gcc) {

View File

@@ -15,11 +15,11 @@ if (OperatingSystem.current().isLinux()) {
model {
platforms {
x86 {
architecture 'x86'
}
x64 {
architecture 'x86_64'
}
x86 {
architecture 'x86'
}
x64 {
architecture 'x86_64'
}
}
}