Fix MyRobotStatic accidentally linking to shared command libs (#2046)

This commit is contained in:
Thad House
2019-11-06 14:06:04 -08:00
committed by Peter Johnson
parent 384d00f9e6
commit 0ebe32823a

View File

@@ -97,8 +97,8 @@ model {
}
}
binaries.all { binary ->
lib project: ':wpilibOldCommands', library: 'wpilibOldCommands', linkage: 'shared'
lib project: ':wpilibNewCommands', library: 'wpilibNewCommands', linkage: 'shared'
lib project: ':wpilibOldCommands', library: 'wpilibOldCommands', linkage: 'static'
lib project: ':wpilibNewCommands', library: 'wpilibNewCommands', linkage: 'static'
lib project: ':wpilibc', library: 'wpilibc', linkage: 'static'
lib project: ':ntcore', library: 'ntcore', linkage: 'static'
lib project: ':cscore', library: 'cscore', linkage: 'static'