mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 14:01:17 +12:00
Remove boost::filesystem
This commit is contained in:
parent
d3a7b3b5a6
commit
5a231bedad
4 changed files with 1 additions and 6 deletions
|
@ -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)
|
||||
|
|
|
@ -34,7 +34,6 @@ target_link_libraries(CemuCommon PRIVATE
|
|||
CemuConfig
|
||||
CemuComponents
|
||||
Boost::nowide
|
||||
Boost::filesystem
|
||||
glm::glm
|
||||
)
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue