2019-06-28 23:55:14 -04:00
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
|
@FILENAME_DEP_REPLACE@
|
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
|
find_dependency(Threads)
|
2024-10-25 23:52:38 +08:00
|
|
|
if(@WITH_PROTOBUF@)
|
|
|
|
|
find_dependency(Protobuf)
|
|
|
|
|
endif()
|
2022-10-20 19:47:12 -07:00
|
|
|
@FMTLIB_SYSTEM_REPLACE@
|
2019-06-28 23:55:14 -04:00
|
|
|
|
2023-09-11 22:27:00 +02:00
|
|
|
if(@USE_SYSTEM_FMTLIB@)
|
|
|
|
|
find_dependency(fmt)
|
|
|
|
|
endif()
|
|
|
|
|
|
2020-11-16 00:38:55 -06:00
|
|
|
@FILENAME_DEP_REPLACE@
|
2019-06-28 23:55:14 -04:00
|
|
|
include(${SELF_DIR}/wpiutil.cmake)
|
2023-12-06 21:28:38 -05:00
|
|
|
if(@WITH_JAVA@)
|
|
|
|
|
include(${SELF_DIR}/wpiutil_jar.cmake)
|
|
|
|
|
endif()
|