SpaceIm
SpaceIm
It's also something I've suggested here: https://github.com/conan-io/conan/issues/10075#issuecomment-978064194 Until conan can provide some IDE integration, I use this `tasks.json`: https://github.com/SpaceIm/vscode-cpp-cmake-conan-template/blob/master/.vscode/tasks.json Basically, I use this task to run conan install with many...
> ``` > conan install . --build=missing > cmake --preset conan-release > cmake --build --preset conan-release > ``` > this works perfectly, but for what I am trying to achieve...
FYI, hardening is done by Xcode through `codesign` utility under the hood. So if for some reason you don't build with Xcode, but let's say Ninja or Make, you can...
https://stackoverflow.com/questions/52905940/how-to-codesign-and-enable-the-hardened-runtime-for-a-3rd-party-cli-on-xcode
No idea, I've just fixed the most obvious issue reported by https://github.com/conan-io/conan-center-index/issues/24056 (dynamic runtime not honored if clang-cl), but not tested myself since I'm not on Windows currently. I don't...
May I ask to conan folks maintaining conancenter to push for adding these helpers to conan API? I've opened https://github.com/conan-io/conan/issues/12336 long time ago, and I don't have the time to...
`package_info()` of `cpprestsdk` recipe propagates `boost::boost` conan component (ie all Boost components), which is not very neat (too many libraries are propagated): https://github.com/conan-io/conan-center-index/blob/a78bd93ba872b241d5dcd9c8e82bb00b5c05dbb4/recipes/cpprestsdk/all/conanfile.py#L115 Here is the list of CMake targets...
@Ukilele please try https://github.com/conan-io/conan-center-index/pull/24100
I'm pretty sure that this pattern is different in other versions. I think a patch adding BUILD_TOOLS option in each version would be better, and it could be submitted upstream...
> @SpaceIm is it the same problem as in ffmpeg (VS YASM vs CMake YASM)? Yes, I think so.