-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
165 lines (131 loc) · 4.06 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import org.gradle.internal.os.OperatingSystem
plugins {
id 'net.ltgt.errorprone' version '0.0.8'
id 'edu.wpi.first.wpilib.versioning.WPILibVersioningPlugin' version '1.6'
id "de.undercouch.download" version "3.2.0"
}
allprojects {
repositories {
mavenCentral()
}
}
import de.undercouch.gradle.tasks.download.Download
if (!hasProperty('releaseType')) {
WPILibVersion {
releaseType = 'official'
}
}
ext.setupDefines = { project, binaries ->
binaries.all {
if (project.hasProperty('debug')) {
project.setupDebugDefines(cppCompiler, linker)
} else {
project.setupReleaseDefines(cppCompiler, linker)
}
}
}
ext.ctreUnzipLocation = "${buildDir}/ctre"
ext.compilerUnzipLocation = "${buildDir}/compiler"
task downloadCtreSdk(type: Download) {
src 'http://www.ctr-electronics.com//downloads/lib/CTRE_FRCLibs_NON-WINDOWS_v4.4.1.9.zip'
dest buildDir
overwrite false
onlyIfNewer true
}
task unzipCtreSdk(type: Copy) {
dependsOn downloadCtreSdk
from zipTree("${buildDir}/CTRE_FRCLibs_NON-WINDOWS_v4.4.1.9.zip")
into ctreUnzipLocation
}
task downloadCompiler(type: Download) {
src 'http://first.wpi.edu/FRC/roborio/toolchains/FRC-2017-Windows-Toolchain-4.9.3.zip'
dest buildDir
overwrite false
onlyIfNewer true
}
task unzipCompiler(type: Copy) {
dependsOn downloadCompiler
from zipTree("${buildDir}/FRC-2017-Windows-Toolchain-4.9.3.zip")
into compilerUnzipLocation
}
if (new File(compilerUnzipLocation).exists()) {
ext.toolChainPath = "${compilerUnzipLocation}/frc/bin"
}
ext.ctre = ctreUnzipLocation
ext.ctreInclude = "$ctreUnzipLocation/cpp/include"
ext.ctreLocation = "$ctreUnzipLocation/cpp/lib"
ext.ctreStaticLib = "$ctreLocation/libCTRLib.a"
ext.addCtreLinks = { compileTask, linker, targetPlatform ->
compileTask.dependsOn project(':').unzipCtreSdk
String architecture = targetPlatform.architecture
if (architecture.contains('arm')) {
// Grab the static library and link it
linker.args ctreStaticLib
def libraryPath = ctreLocation
linker.args << '-L' + libraryPath
}
}
apply from: "locations.gradle"
apply from: "dependencies.gradle"
defineWpiUtilProperties()
defineHALProperties()
apply plugin: 'cpp'
apply from: "${rootDir}/toolchains/arm.gradle"
model {
components {
ctreextern(NativeLibrarySpec) {
targetPlatform 'arm'
setupDefines(project, binaries)
binaries.all {
tasks.withType(CppCompile) {
cppCompiler.args "-DNAMESPACED_WPILIB"
addCtreLinks(it, linker, targetPlatform)
addHalLibraryLinks(it, linker, targetPlatform)
addWpiUtilLibraryLinks(it, linker, targetPlatform)
}
}
sources {
cpp {
source {
srcDirs = [driverSrc]
includes = ["**/*.cpp",]
}
exportedHeaders {
srcDirs = [driverInclude, halInclude, wpiUtilInclude, ctreInclude]
includes = ['**/*.h']
}
}
}
}
}
}
project.debugStripSetup()
def netDir = "${rootDir}/src/FRC.WPILib.CTRE/Libraries"
task copyToNet(type: Copy) {
description = 'Copies shared library to .NET source folder'
group = 'WPILib'
destinationDir = file(netDir)
project.model {
binaries {
withType(SharedLibraryBinarySpec) { binary ->
from(binary.sharedLibraryFile) {
include '*.so'
}
}
}
}
}
project.tasks.whenTaskAdded { task ->
def name = task.name.toLowerCase()
if (name.contains("sharedlibrary") || name.contains("staticlibrary")) {
copyToNet.dependsOn task
}
}
build.dependsOn copyToNet
clean {
delete buildDir
delete releaseDir
}
task wrapper(type: Wrapper) {
gradleVersion = '3.5'
}