Files
allwpilib/wpimath/wpimath-config.cmake.in
Tyler Veness b6effc4908 [build] Add WPILIB_ prefix to CMake options (#9027)
This is common practice in CMake projects to avoid name collisions.

Fixes #8984.
2026-07-01 23:16:44 -07:00

15 lines
275 B
CMake

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