Skip to content

Commit

Permalink
Do not set system requirement explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
deniskovalchuk committed Sep 11, 2023
1 parent 2664780 commit 80e5835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ option(LIBFTP_BUILD_EXAMPLES "Build the examples" ${is_top_level})
option(LIBFTP_BUILD_CMDLINE_CLIENT "Build the command-line FTP client application" ${is_top_level})

if (LIBFTP_BUILD_TESTS)
# Boost::system and Boost::filesystem are required for building of tests.
find_package(Boost 1.67.0 COMPONENTS system filesystem REQUIRED)
# Boost::filesystem is required to build the tests.
find_package(Boost 1.67.0 COMPONENTS filesystem REQUIRED)
else()
find_package(Boost 1.67.0 REQUIRED)
endif()
Expand Down

0 comments on commit 80e5835

Please sign in to comment.