From 00c94b0a2063534563f132a238b3c3948a844edc Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Wed, 14 Aug 2024 09:10:15 +0200 Subject: [PATCH] Remove unnecessary boost::beast find_package call boost::beast is header-only, so find_package will fail. --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a49ae48..f6de5cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -152,7 +152,6 @@ find_package(Boost COMPONENTS filesystem REQUIRED) find_package(Boost COMPONENTS log REQUIRED) find_package(Boost COMPONENTS thread REQUIRED) find_package(Boost COMPONENTS system REQUIRED) -find_package(Boost COMPONENTS beast REQUIRED) find_package(GTest REQUIRED) # print include directories for debugging -- GitLab