You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to compile mcpelauncher-ui upstream, this submodule is compiled as part of the process.
However, when I try to compile. I run into several errors with a particular autogenerated file called mocs_compilation.cpp. The common thread here is that it doesn't know what string_view is. string_view requires at minimum C++17. However, when looking at CMakeLists, it is setting the version to C++14. This repository is using an outdated C++ standard and will not compile.
I can confirm this issue only happens when you are specifically compiling the Qt5 launcher. The Qt6 Launcher does not have this problem.
Considering that the project seems to be heading in a direction where Qt5 will be discontinued, I will close this issue once Qt5 is no longer the default.
When trying to compile
mcpelauncher-ui
upstream, this submodule is compiled as part of the process.However, when I try to compile. I run into several errors with a particular autogenerated file called
mocs_compilation.cpp
. The common thread here is that it doesn't know whatstring_view
is. string_view requires at minimum C++17. However, when looking at CMakeLists, it is setting the version to C++14. This repository is using an outdated C++ standard and will not compile.mcpelauncher-ui-qt/CMakeLists.txt
Line 9 in 6d0932f
When setting this value to 17, the project compiles without these errors.
The text was updated successfully, but these errors were encountered: