Ralith / nachat

Portable desktop chat client for Matrix
Apache License 2.0
50 stars 14 forks source link

Build fails #13

Closed alphapapa closed 6 years ago

alphapapa commented 6 years ago
Generating moc_LoginDialog.cpp
In file included from /home/me/src/misc/nachat/src/matrix/utils.cpp:1:0:
/home/me/src/misc/nachat/src/matrix/utils.hpp:4:33: fatal error: experimental/optional: No such file or directory
 #include <experimental/optional>
                                 ^
compilation terminated.
alphapapa commented 6 years ago

@Ralith Ping? :) I see you're also working on nheko. Is this project still alive, or have you switched?

Ralith commented 6 years ago

This error indicates that your C++ stdlib does not provide std::experimental::optional. This usually means either your environment does not support C++14, or has removed the experimental version since the arrival of C++17 support.

I don't currently have the time to give nachat the attention it deserves as a sole developer. nheko is not yet at feature parity, but it has a relatively strong following, so I'm hopeful that it will eventually grow into a good successor.

alphapapa commented 6 years ago

Thanks.