kostprof21
kostprof21
Hi @czoido, After deleting the **build/** folder, I call `conan install -s build_type=Debug`, and then call **cmake**. It can be seen that the **include** field in ConanPresets.json has been updated,...
@czoido Do I need to provide a code?
Hi @czoido, We are not talking about recreating the deleted `Release` preset files (e.g. `build/Release/generators/CMakePresets.json`). Conan needs to restore the stubs for release. That is, we will do the following...
For information, my **CMakePresets.json** looks like ``` { "version": 4, "include": ["./ConanPresets.json"], "configurePresets": [ { "name": "release", "displayName": "release single config", "inherits": "conan-release" }, { "name": "debug", "displayName": "debug single...
The error described after adding stub, if there are **buildPresets**, I have already created a ticket https://github.com/conan-io/conan/issues/19180. @czoido please delete fileds `buildPresets` and `configurePresets/default` from **CMakePresets.json** and try again
I'm usnig generator "Unix Makefiles" or "Ninja". The problem is the generation of `stubs` in **ConanPreset.json** for `buildPresets`. It looks like this is a **cmake** problem, as I did not...
Hi @memsharded, Any news?
@memsharded okay, let's start in order, I hope I'm not missing anything. My system **macOS Sequoia 15.7.1**, `default profile` ``` [settings] arch=x86_64 build_type=Release compiler=apple-clang compiler.cppstd=gnu17 compiler.libcxx=libc++ compiler.version=16 os=Macos ``` 1)...