Skip to content

Instantly share code, notes, and snippets.

@arturfog
Last active June 10, 2018 13:04
Show Gist options
  • Save arturfog/c890e97a28e71a426c8d47f12c0bfc86 to your computer and use it in GitHub Desktop.
Save arturfog/c890e97a28e71a426c8d47f12c0bfc86 to your computer and use it in GitHub Desktop.
Conan.io notes
conan source ..
conan install -o aws-sdk-cpp:build_s3=True -o aws-sdk-cpp:build_transfer=True -o min_size=False -o aws-sdk-cpp:shared=True -s os=Linux -s arch=x86-64 -s build_type=Release .
conan build .
conan package .
conan export-pkg --package-folder=./package . arturfog/release
conan upload aws-sdk-cpp/1.4.64@arturfog/release --all -r my-conan-repo
conan remote add arturfog-conan-repo https://api.bintray.com/conan/arturfog/oss-conan
conan search -r arturfog-conan-repo
-------------------------------------------------
vim conanfile.txt
[requires]
aws-sdk-cpp/1.4.59@arturfog/release
[generators]
qmake
[settings]
os=Linux
arch=x86_64
build_type=Release
[options]
aws-sdk-cpp:shared=True
aws-sdk-cpp:build_transfer=True
aws-sdk-cpp:build_s3=True
-------------------------------------------------
conan install . -g qmake
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment