-
-
Notifications
You must be signed in to change notification settings - Fork 890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add basic Conan support #162
Conversation
There’s already a script that publishes to Homebrew. You could quite easily add a new script for publishing to Conan. The script is run automatically by Travis. |
@Kerndog73 Yes, of course, but divide&conquer pull requests is also a good thing :) At Bincrafters we maintain templates for Conan and I will re-use them (https://github.com/bincrafters/conan-templates & https://github.com/bincrafters/conan-templates-upstream) |
Just a side question: is it possible to turn |
I can rename it if you want. It's just more common for us to use a |
Stick with the convention. Just a matter of tastes. Not a problem. 👍 |
@Croydon may I ask you to help me to port the conan stuff to GH actions? |
Nevermind. It works. 👍 |
This adds basic Conan support.
Packages can be build with
conan create . entt/<version-number>@skypjack/stable
Packages can be tested with
conan create . entt/<version-number>@skypjack/stable -tf conan/test_package
(the parameter tf stands for test_package)
I will create a separate pull request for adding CI building/testing/publishing later.
Cross-referencing: conan-io/wishlist#166