blob: 3926ecb9106221d5a2251684bd091ae7eaadf24c [file] [log] [blame]
Brian Silverman8fce7482020-01-05 13:18:21 -08001include(CMakeFindDependencyMacro)
2@FILENAME_DEP_REPLACE@
3set(THREADS_PREFER_PTHREAD_FLAG ON)
4find_dependency(Threads)
Maxwell Henderson80bec322024-01-09 15:48:44 -08005find_dependency(Protobuf)
James Kuszmaulcf324122023-01-14 14:07:17 -08006@FMTLIB_SYSTEM_REPLACE@
Brian Silverman8fce7482020-01-05 13:18:21 -08007
James Kuszmaulb13e13f2023-11-22 20:44:04 -08008if(@USE_SYSTEM_FMTLIB@)
9 find_dependency(fmt)
10endif()
11
Austin Schuh812d0d12021-11-04 20:16:48 -070012@FILENAME_DEP_REPLACE@
Brian Silverman8fce7482020-01-05 13:18:21 -080013include(${SELF_DIR}/wpiutil.cmake)
Maxwell Henderson80bec322024-01-09 15:48:44 -080014if(@WITH_JAVA@)
15 include(${SELF_DIR}/wpiutil_jar.cmake)
16endif()