mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
19 lines
384 B
CMake
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()
|