mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
This got missed in the reorg, and these values aren't actually used for anything when building in `allwpilb`, but we might as well fix them here to make the copybara process easier.
40 lines
937 B
TOML
40 lines
937 B
TOML
[build-system]
|
|
build-backend = "hatchling.build"
|
|
requires = [
|
|
"hatchling",
|
|
"hatch-nativelib~=0.2.0",
|
|
"hatch-robotpy~=0.2.1",
|
|
"robotpy-native-wpilib==0.0.0",
|
|
]
|
|
|
|
[project]
|
|
name = "robotpy-native-romi"
|
|
version = "0.0.0"
|
|
description = "WPILib Romi support library"
|
|
license = "BSD-3-Clause"
|
|
|
|
dependencies = [
|
|
"robotpy-native-wpilib==0.0.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/native"]
|
|
|
|
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
|
|
artifact_id = "romiVendordep-cpp"
|
|
group_id = "org.wpilib.romiVendordep"
|
|
repo_url = "https://frcmaven.wpi.edu/artifactory/release-2027"
|
|
version = "0.0.0"
|
|
|
|
extract_to = "src/native/romi"
|
|
libs = ["romiVendordep"]
|
|
|
|
[[tool.hatch.build.hooks.nativelib.pcfile]]
|
|
pcfile = "src/native/romi/robotpy-native-romi.pc"
|
|
name = "romi"
|
|
|
|
includedir = "src/native/romi/include"
|
|
libdir = "src/native/romi/lib"
|
|
shared_libraries = ["romiVendordep"]
|
|
requires = ["robotpy-native-wpilib"]
|