raphael10-collab

Results 111 comments of raphael10-collab

@galkahana To reproduce the issue is quite simple: **1° Step** : Install the C++ UI library `wxWidgets` : https://github.com/wxWidgets/wxWidgets.git **2° Step** : In `wxWidgets/samples/webView/` subfolder use this `CMakeLists.txt` file to...

@galkahana Perhaps I discovered the root cause of the issue, and the solution to it: I changed from: PDFWriter pdfWriter; To: PDFWriter* pdfWriter; and the execution of the built file...

@galkahana I suspect that using pointer with `pdfWriter` is not that good, because I've tried to use a pdfWriter's method and got `Segmentation fault (core dumped)` again : In `webview.cpp`...

I'm having the same problem : https://github.com/libp2p/cpp-libp2p/issues/138#issuecomment-2393970522 How to add cpp-libp2p into an already working project?

Looking for English Documentation as well : https://yasio.github.io/en/ ![Image](https://github.com/user-attachments/assets/16df85ce-63cb-475d-ac17-6a6177cb156a)

@dosu Luckily it's a KVM-based VPS: ubuntu@vps-a79e4302:~$ systemd-detect-virt kvm But, I tried to run the installer as root and got "command not found" : ubuntu@vps-a79e4302:~$ sudo boot-to-talos sudo: boot-to-talos: command...

@dosu After moving boot-to-talos to /usr/local/bin it seems working with sudo But copying the image.raw to /dev/sda seems taking too long: already more than 35 minutes... ubuntu@vps-a79e4302:~$ sudo mv .local/bin/boot-to-talos...

Besides that when adding : in the CMakeLists.txt of my project: #if defined(__linux__) set(sep "\\") #else set(sep "\/") set(LIBMEDIASOUPCLIENT "libmediasoupclient") set(LIBMEDIASOUPCLIENTPATH "${CD}${sep}${SRC}${sep}${LIBMEDIASOUPCLIENT}") cmake_print_variables(LIBMEDIASOUPCLIENTPATH) add_subdirectory( "${LIBMEDIASOUPCLIENTPATH}" ) target_include_directories(${PROJECT_NAME} PUBLIC ./src/libmediasoupclient/include )...

I created a brand new public github repo to test QLever as Embedded Database: CppPrjWithQlever : https://github.com/raphael10-collab/CppPrjWithQLever (base) raphy@raohy:~/CppPrjWithQLever$ cmake -B build -Wno-dev -- The C compiler identification is GNU...

I've been using CMakeLists.txt and its FetchContent ,for example zlib, dlib, graaflib, usearch (just to name a few), and only for QLever I'm experiencing such issues The following `FetchContent` s...