Luis Martinez

Results 117 comments of Luis Martinez

Oh, now I see. The `[conf]` elements go in the `profile` or directly (without the [conf]) in a file called [global.conf](https://docs.conan.io/en/latest/reference/config_files/global_conf.html) instead of the `conan.conf`

> One additional question: the cmake_generator = Ninja in general section is ignored in this case? Not sure if ignored or fail, but it won't work. The new "conf" should...

Hello! We have considered that this deserves taking a look. I will start trying to understand correctly and try this PR and then we would like to take only (initially)...

Hi, we decided to start with this for Beta 4. We will start opening a simplified proposal for a `PythonVirtualEnv` and then iterating it with you. About the `CMakePythonDeps`, we...

@thorntonryan I don't know much about the `COM` servers, I'm reading a bit about them. So you have a `COM server` that consists of a DLL and an `EXE`? Is...

>. you mentioned you were going to open a new issue to talk about modelling exes, maybe discussion about COM servers could moved to that issue as well? Sure, the...

Hi! This is more a question for the Artifactory team, but I think in the remote repositories, the user would need the [`Deploy/ Cache` ](https://www.jfrog.com/confluence/display/JFROG/Permissions) permissions to be able to...

Hi, we introduced the `validate_build()` method that works with the `self.settings` and `self.options` directly. The meaning of the `validate_build()` is "The package cannot be built with this configuration" or ~"The...

Something more we have to check: ``` if self.info.options.get_safe("header_only") is False: ConanException: option 'get_safe' doesn't exist ``` Same for `self.info.settings.get_safe`

About the `check_min_cppstd(self, 11)`, this is a bit tricky. We could protect it (once it works) with a `get_safe` in the `self.info.settings` or using the suggested `not self.info.options.get_safe("header_only")` but we...