diff --git a/script/boost.cmake b/script/boost.cmake index c0a6e3f..70a4b62 100644 --- a/script/boost.cmake +++ b/script/boost.cmake @@ -8,7 +8,7 @@ if (NOT Boost_FOUND) set(Boost_NO_WARN_NEW_VERSIONS ON) set(Boost_DEBUG OFF) - find_package(Boost COMPONENTS locale) + find_package(Boost COMPONENTS locale filesystem system) message(STATUS "Boost Found (Try 1): " ${Boost_FOUND}) message(STATUS "Boost Version: " ${Boost_VERSION_STRING}) message(STATUS "Boost Include Dirs: " ${Boost_INCLUDE_DIRS}) @@ -17,7 +17,7 @@ if (NOT Boost_FOUND) message(STATUS "Boost Root: " ${Boost_ROOT}) if (NOT Boost_FOUND) set(Boost_ROOT ${COMP_DIR}/boost/latest) - find_package(Boost REQUIRED COMPONENTS locale) + find_package(Boost REQUIRED COMPONENTS locale filesystem system) message(STATUS "Boost Found (Try 2): " ${Boost_FOUND}) message(STATUS "Boost Version: " ${Boost_VERSION_STRING}) diff --git a/vcpkg.json b/vcpkg.json index c1694c6..2cfa6aa 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -3,15 +3,15 @@ "version": "1.0", "dependencies": [ "boost-locale", - "boost-endian" - ], + "boost-endian", + "boost-process", + "boost-filesystem" + ], "features": { "tools": { "description": "Build GUI and daemons", "dependencies": [ "boost-asio", - "boost-process", - "boost-filesystem", "wxwidgets" ] }