From 2105e1b41a4e7cc835581c0f2c21f79fe3acc899 Mon Sep 17 00:00:00 2001 From: kwoodle Date: Mon, 8 Jun 2020 10:12:10 -0400 Subject: [PATCH] Update CMakeLists.txt Signed-off-by: kwoodle --- .../cxx-example/external/upstream/boost/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter-08/recipe-02/cxx-example/external/upstream/boost/CMakeLists.txt b/chapter-08/recipe-02/cxx-example/external/upstream/boost/CMakeLists.txt index 4c258c338..ef8597eda 100644 --- a/chapter-08/recipe-02/cxx-example/external/upstream/boost/CMakeLists.txt +++ b/chapter-08/recipe-02/cxx-example/external/upstream/boost/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Boost ${Boost_MINIMUM_REQUIRED} QUIET COMPONENTS "${BOOST_COMPONENTS_REQUIRED}") +find_package(Boost ${Boost_MINIMUM_REQUIRED} QUIET COMPONENTS ${BOOST_COMPONENTS_REQUIRED}) if(Boost_FOUND) message(STATUS "Found Boost version ${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}")