Elias

Results 15 comments of Elias

Hello! Try to use newer dub version (or simply download DMD beta 2.082.0). Please, study https://dlang.org/changelog/2.082.0.html#recursive_dependecy_resolution https://github.com/dlang/dub

You can experiment with older dmd and fresh dub. For example, download older dmd from official site and clone dub repository. Build fresh dub and replace internal dub.exe within dmd...

You can use prebuilt IDE: https://github.com/buggins/dlangide/releases

Error: module 'string' is fixed here: https://github.com/buggins/dlangui/issues/570

Where should I put this command? I've tried to set it as a command line argument (-DCURL_LIBRARY=libcurl) for curlpp, but build failed. Putting `set(CURL_LIBRARY libcurl)` to the top of curlpp...

Thank you. But what if somebody wants to build dynamic library? I don't understand why manual patching of CMakeLists.txt is required. curlpp should be built out-of-the-box.

When I have embedded `QVariant child`, I put some dummy conversion function, then serialization succeeds (surely, with dummy value instead of actual data). QString Gadget2QString(const Gadget& gadget) { return "dummy";...

Would you like to consider https://github.com/Skycoder42/QCtrlSignals for inspiration?

BTW, /** * This signal is likely to be emitted when the worker process should * stop, at this point the application has a limited time to finish it's *...

Should I add `SIGTERM` to `case` in `void UnixFork::setupSocketPair(bool closeSignalsFD, bool createPair)`? case SIGINT: case SIGQUIT: handleSigInt(); break;