mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
17 lines
352 B
CMake
17 lines
352 B
CMake
include(CMakeFindDependencyMacro)
|
|
@FILENAME_DEP_REPLACE@
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_dependency(Threads)
|
|
find_dependency(Protobuf)
|
|
@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()
|