Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
73 views

How can I get a PC to operate BluetoothLE using C++Builder on Windows 11 and a Bluetooth 5.3 UB500 dongle? I have installed CMake 4.0.3. I have downloaded SimpleBLE from GitHub. In a Command Prompt, I ...
egginstone's user avatar
0 votes
2 answers
192 views

I am working on a c++ project using nix flakes, this is the basic flake I have developed : { description = "flake for an autonomous rover"; inputs = { nixpkgs.url = "github:...
Yasharth Gupta's user avatar
0 votes
0 answers
186 views

I am currently working on a c++ project using nix flakes. I am using a state machine library known as YASMIN (https://github.com/uleroboticsgroup/yasmin). While trying to build this package in nix I ...
Yasharth Gupta's user avatar
1 vote
1 answer
168 views

I want to create a c++-20-module without partitions but where the interface is in a different file than the implementation. This is my setup: interface file ModuleTest.ixx: export module moduleTest; ...
MarkusParker's user avatar
  • 1,662
-1 votes
1 answer
53 views

I have the following problem: I enabled precompiled headers for my CMake project using target_precompile_headers(${APPLICATION_NAME} PRIVATE include/precompiled/pch.h) . This worked, however only for ...
eli3D's user avatar
  • 11
0 votes
0 answers
63 views

I'm developing an Android app using Qt 6.9 that needs to scan WiFi networks. I've created a custom Java class to handle the WiFi scanning, but when I try to call it from C++ using QJniObject, I get a ...
kidtic's user avatar
  • 1
0 votes
0 answers
77 views

I have a c++ cmake project with multiple subprojects, one of those is ScriptCore which is just a ScriptCore.csproj and a few .cs scripts. The cmake file for this subproject runs the following command: ...
Faizan Qaiser's user avatar
0 votes
1 answer
279 views

Currently I'm trying to add SDL3 and ImGui to my 2D game engine's config.cmake file. I would like to use that library as below from external project. find_package(MyEngine REQUIRED) add_executable(...
kreedxe's user avatar
0 votes
0 answers
39 views

I am working on simple minecraft launcher https://github.com/skorakora/ZielonaAlkaidaLauncher I would like to add libgit2 to it as git submodule. I have tried "git submodule add ``https://github....
skorakora's user avatar
0 votes
0 answers
104 views

So to set the stage (and it's a strange stage...) this is on NetBSD, using pkgsrc, and on hppa architecture. I build this the same way on sparc without issue. On hppa, I get: `_ZL17__gthread_triggerv'...
Brandon Applegate's user avatar
1 vote
0 answers
267 views

I'm using NixOS and trying to learn SDL, yesterday I got a code example to build and work but today it stopped working, I tried rebuilding everything in a different directory with no success. I'm ...
veeloth's user avatar
  • 86
3 votes
1 answer
259 views

There is the following C++ Core Guideline: Header files should be self-contained In large project, how can we automate this check, I would like to avoid having to add empty .cpp files for every &...
darune's user avatar
  • 11.5k
0 votes
1 answer
146 views

Tried to use https://github.com/Sicos1977/TesseractOCR Nuget package in Debian 12. It looks that it requires new version of leptonica libleptonica-1.85.0.dll.so which is not avaliable in Debian: #apt ...
Andrus's user avatar
  • 28.2k
2 votes
0 answers
296 views

I am trying to write a simple application that uses llama.cpp and I am including it to my application using cmake and vcpkg. My CMakeList.txt is: cmake_minimum_required(VERSION 4.0) if(WIN32) File(...
mans's user avatar
  • 18.4k
0 votes
0 answers
66 views

I have two related questions: I am on a Linux Mint OS and trying to install wxWidgets from vcpkg and having problems. Has anyone achieved to install wxWidgets from vcpkg on Linux? Are there ...
macroland's user avatar
  • 1,053
2 votes
1 answer
69 views

I cant seem to find a solution to match file paths against the src directory instead of build, without getting cmake to change its binary output target. Currently if I do myproject/src/asset/asset.* ...
Luke Howe's user avatar
3 votes
1 answer
329 views

I have a VSCode project using CMake Tools that utilizes CMake presets. Each preset corresponds to a different target platform, and therefore includes a different set of source files to be compiled. ...
Bri Bri's user avatar
  • 1,992
0 votes
1 answer
61 views

I'm noob at C and cmake and experience difficulties with a lib linkage. I have the following cmake: cmake_minimum_required(VERSION 3.10) project(EC C) set(CMAKE_C_STANDARD 11) add_executable(EC main....
Mik's user avatar
  • 2,101
3 votes
1 answer
88 views

I maintain a Python module here and I'm having difficulty getting it to build correctly. I'm currently trying to switch from the old numpy distutils over to scikit-build-core on the change-setup ...
John Coxon's user avatar
1 vote
0 answers
49 views

tl;dr during cmake command FetchContent_MakeAvailable, an underlying git checkout tag proces fails with fatal: detected dubious ownership in repository at ...; how can I have cmake set a git safe....
JamesThomasMoon's user avatar
0 votes
0 answers
30 views

I am a newbie to cmake. This is what I'm trying to achieve: Run a build command that would generate an elf file. Trigger a python script to run after the elf has been generated - as it takes the elf ...
user30740237's user avatar
0 votes
1 answer
60 views

I am trying to create a library or possibly better to make two libraries. The file structure is below (with generic names). I am trying to get the ExampleProject to be able to include messageA.h, ...
DannyG's user avatar
  • 177
1 vote
1 answer
218 views

I have a CMake-based Qt project that I'm developing with Qt Creator. Recently I enabled C++20 support with CMake via set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(...
flyx's user avatar
  • 40.6k
-1 votes
1 answer
265 views

I've trained myself on a C++ 17 book on a project made of multiple executables in order to run each of them thing quickly. Today, to handle a new source Copies.cpp I've asked for C++ 20. (CMakeLists....
Marc Le Bihan's user avatar
1 vote
1 answer
80 views

In my CMake project I use "coro" library. But when compile the project I got following errors: /root/uwu/include/picohttp/server.hpp:58:58: error: ‘io_scheduler’ is not a member of ‘coro’ ...
Fuji's user avatar
  • 117