ryanhaining / cppitertools

Implementation of python itertools and builtin iteration functions for C++17
https://twitter.com/cppitertools
BSD 2-Clause "Simplified" License
1.37k stars 115 forks source link

Files for building conan package #70

Closed Shaheen47 closed 4 years ago

Shaheen47 commented 4 years ago

Here is the new, clean pull request following pull request #69 . This pull request addresses issue #68 . The sources will be available to the importing project at #include <cppitertools/*>

Please check the metadata in conanfile.py for correctness.

For packaging and pushing the following steps are necessary:

  1. Create an account following https://docs.conan.io/en/latest/uploading_packages/bintray/uploading_bintray.html . Assume your account name is xyz
  2. package the package: conan create . xyz/stable
  3. Follow the instructions for uploading: https://docs.conan.io/en/latest/uploading_packages/uploading_to_remotes.html

The package will be referred to as cppitertools/2.0@xyz/stable

Please refer to https://github.com/bigerl/testcppitertoolsconan for a example how to use the conan package.

ryanhaining commented 4 years ago

I'll work on figuring out the rest. Thanks for your work