From eedf5ca40524fba9a6d90ca9345a48e0d08a2fb5 Mon Sep 17 00:00:00 2001 From: Jaesoo Lee Date: Wed, 25 Oct 2023 10:02:58 -0700 Subject: [PATCH] fixed oss build error related to inject_pause Summary: As reported by https://github.com/facebook/CacheLib/issues/270, the oss build is broken because we forgot to add the newly added file inject_pause.cpp to CMakeLists.txt. This changes fixes it. When we work on D48811189, Reviewed By: haowu14 Differential Revision: D50618724 fbshipit-source-id: 5e29145a207ece914485beaa6f613040b49dc871 --- cachelib/common/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/cachelib/common/CMakeLists.txt b/cachelib/common/CMakeLists.txt index 1e6d1a887..927f2fa3f 100644 --- a/cachelib/common/CMakeLists.txt +++ b/cachelib/common/CMakeLists.txt @@ -21,6 +21,7 @@ add_library (cachelib_common CountDownLatch.cpp ${BLOOM_THRIFT_FILES} hothash/HotHashDetector.cpp + inject_pause.cpp PercentileStats.cpp PeriodicWorker.cpp piecewise/GenericPieces.cpp