From e48bb98f73fecc985b6dab33e4aa72df94ee92b0 Mon Sep 17 00:00:00 2001 From: Francesco Mazzoli Date: Tue, 28 Nov 2023 21:45:40 +0000 Subject: [PATCH] Remove outdated comment We now include all dependencies which are needed beyond basic build tools --- cpp/thirdparty.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cpp/thirdparty.cmake b/cpp/thirdparty.cmake index 42291ddc..a07d0593 100644 --- a/cpp/thirdparty.cmake +++ b/cpp/thirdparty.cmake @@ -1,5 +1,3 @@ -# We only include things that we care about performance-wise, or that alpine does not -# have as static libraries. find_program(MAKE_EXE NAMES gmake nmake make) if(${CMAKE_VERSION} VERSION_GREATER "3.23") @@ -175,4 +173,4 @@ set_target_properties(jemalloc PROPERTIES IMPORTED_LOCATION ${INSTALL_DIR}/lib/l # This explicit dependency tracking is needed for ninja, which is blind to the # include dependencies from our code into the above, apparently. add_custom_target(thirdparty) -add_dependencies(thirdparty make_uring make_lz4 make_zstd make_rocksdb make_xxhash make_jemalloc) \ No newline at end of file +add_dependencies(thirdparty make_uring make_lz4 make_zstd make_rocksdb make_xxhash make_jemalloc)