Remove boost::filesystem

This commit is contained in:
Zopolis4 2022-09-02 15:37:52 +10:00
parent d3a7b3b5a6
commit 5a231bedad
No known key found for this signature in database
GPG key ID: C1117D56FBC82774
4 changed files with 1 additions and 6 deletions

View file

@ -79,7 +79,7 @@ find_package(CURL REQUIRED)
find_package(pugixml REQUIRED)
find_package(imgui REQUIRED)
find_package(RapidJSON REQUIRED)
find_package(Boost COMPONENTS program_options filesystem nowide REQUIRED)
find_package(Boost COMPONENTS program_options nowide REQUIRED)
find_package(libzip REQUIRED)
find_package(glslang REQUIRED)
find_package(ZLIB REQUIRED)

View file

@ -34,7 +34,6 @@ target_link_libraries(CemuCommon PRIVATE
CemuConfig
CemuComponents
Boost::nowide
Boost::filesystem
glm::glm
)

View file

@ -69,7 +69,6 @@
#include <boost/nowide/convert.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/asio.hpp>
#include <boost/filesystem.hpp>
#include <glm/glm.hpp>
#include <glm/gtc/quaternion.hpp>

View file

@ -808,9 +808,6 @@ std::vector<std::string> InputManager::get_profiles()
bool InputManager::is_valid_profilename(const std::string& name)
{
if (!boost::filesystem::windows_name(name))
return false;
// dont allow default profile names
for (size_t i = 0; i < kMaxController; i++)
{