Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 1 addition & 25 deletions cachelib/cachebench/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,30 +61,6 @@ target_link_libraries(cachelib_cachebench
Boost::boost
)

add_library (cachelib_binary_trace_gen
./runner/Runner.cpp
./runner/Stressor.cpp
./util/CacheConfig.cpp
./util/Config.cpp
./util/MemoryMonitorScript.cpp
./workload/BlockChunkCache.cpp
./workload/BlockChunkReplayGenerator.cpp
./workload/PieceWiseCache.cpp
./workload/OnlineGenerator.cpp
./workload/WorkloadGenerator.cpp
./workload/PieceWiseReplayGenerator.cpp
${OBJECT_CACHE_PERSISTENCE_THRIFT_FILES}
)
add_dependencies(cachelib_binary_trace_gen thrift_generated_files)
target_link_libraries(cachelib_binary_trace_gen
PUBLIC
cachelib_datatype
cachelib_allocator
gflags
PRIVATE
Boost::boost
)

if ((CMAKE_SYSTEM_NAME STREQUAL Linux) AND
(CMAKE_SYSTEM_PROCESSOR STREQUAL x86_64))
else()
Expand All @@ -96,7 +72,7 @@ endif()
add_executable (cachebench main.cpp)
add_executable (binary_trace_gen binary_trace_gen.cpp)
target_link_libraries(cachebench cachelib_cachebench)
target_link_libraries(binary_trace_gen cachelib_binary_trace_gen)
target_link_libraries(binary_trace_gen cachelib_cachebench)

install(
TARGETS
Expand Down
Loading