Files
allwpilib/wpiutil/wpiutil-config.cmake.in

19 lines
384 B
CMake

include(CMakeFindDependencyMacro)
@FILENAME_DEP_REPLACE@
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_dependency(Threads)
if(@WITH_PROTOBUF@)
find_dependency(Protobuf)
endif()
@FMTLIB_SYSTEM_REPLACE@
if(@USE_SYSTEM_FMTLIB@)
find_dependency(fmt)
endif()
@FILENAME_DEP_REPLACE@
include(${SELF_DIR}/wpiutil.cmake)
if(@WITH_JAVA@)
include(${SELF_DIR}/wpiutil_jar.cmake)
endif()