mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
24 lines
606 B
Groovy
24 lines
606 B
Groovy
publishing {
|
|
publications {
|
|
wpilibcSim(MavenPublication) {
|
|
artifact wpilibcSimZip
|
|
groupId 'edu.wpi.first.wpilibc.simulation'
|
|
artifactId 'WPILibCSim'
|
|
version '0.1.0'
|
|
}
|
|
}
|
|
}
|
|
|
|
task wpilibcSimZip(type: Zip) {
|
|
description 'Creates the include zip file for wpilibc'
|
|
group 'WPILib'
|
|
baseName 'WPILibCSim'
|
|
destinationDir = project.buildDir
|
|
into 'sim/include'
|
|
from "${simulation}/include"
|
|
from "${shared}/include"
|
|
from '../build/simulation/gz_msgs/generated'
|
|
from netTablesInclude
|
|
from '../hal/include'
|
|
}
|