Files
allwpilib/wpimath/wpimath-config.cmake.in
Tyler Veness a5d66fb4ff [build] Add CMake option to use system Sleipnir install (#9028)
This allows using an alternate version from FetchContent.
2026-06-27 12:11:54 -07:00

15 lines
261 B
CMake

include(CMakeFindDependencyMacro)
@FILENAME_DEP_REPLACE@
@WPIUTIL_DEP_REPLACE@
if(@USE_SYSTEM_EIGEN@)
find_dependency(Eigen3)
endif()
if(@USE_SYSTEM_SLEIPNIR@)
find_dependency(Sleipnir)
endif()
@FILENAME_DEP_REPLACE@
include(${SELF_DIR}/wpimath.cmake)