Files
allwpilib/wpiutil/wpiutil-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

13 lines
266 B
CMake

include(CMakeFindDependencyMacro)
@FILENAME_DEP_REPLACE@
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_dependency(Threads)
@FMTLIB_SYSTEM_REPLACE@
if(@WPILIB_USE_SYSTEM_FMTLIB@)
find_dependency(fmt)
endif()
@FILENAME_DEP_REPLACE@
include(${SELF_DIR}/wpiutil.cmake)