Roberto Turrado Camblor
Roberto Turrado Camblor
All the work I'm doing lately is on the `unixlike-builds` branch. I first do a `git push`, what triggers the `unixlike-builds CI` workflow, and then a `git tag TAG &&...
I don't believe so. Cache is being saved successfully. It's taking 51MB out of a 500MB max size. Have a look at the [first link](https://github.com/rturrado/the_modern_cpp_challenge/actions/runs/3260925998/jobs/5354957848) again: - `ccache` step: ```...
@jonashaag many thanks for you attention anyway!
Hi @memsharded , Thanks for your quick reply. For the command line, I'm just building with `conan build . -b missing`. For example: ``` conan build . -pr:a=conan/profiles/tests-debug -b missing...
Actually, I also do `self.requires("tree-gen/1.0.6")`. Excuse me, how can I pass that `-DCMAKE_PROJECT_TOP_LEVEL_INCLUDES` on to `conan build`?
Well, this command line indeed reproduces the issue: ``` cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES="conan_provider.cmake" -DCONAN_HOST_PROFILE="default;auto-cmake;/mnt/e/Programacion/code/c++/libqasm/conan/profiles/tests-debug-compat" -DLIBQASM_BUILD_TESTS=ON -DLIBQASM_COMPAT=ON -DASAN_ENABLED=OFF ``` I basically copied what I had in the CLion CMake settings (see screenshot...
Many thanks guys! Great work. I also noticed (quite some time ago) that you had fixed another issue I was experiencing with the CLion Conan plugin (the one that forced...
Hi @jcar87, Many thanks to you for your great work and support! A couple of questions: 1) Can I also set `compiler.cppstd=20` as a setting in my custom Conan profile?...
Wow! Many thanks for your answer! 1. Knowing this is highly valuable. I was using at the moment `target_compile_features( PUBLIC cxx_std_)`, but I'll definitely set `CMAKE_CXX_STANDARD` as well in order...
Hi guys, I have tried this today, and: 1. In my case, setting `CMAKE_CXX_STANDARD` in the `CMakeLists.txt` file is not enough. I need to explicitly use `compiler.cppstd=`. 2. Using `-DCONAN_HOST_PROFILE="default;auto-cmake;/path/to/libqasm/conan/profiles/tests-debug"`...