-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aloys Baillet <[email protected]>
- Loading branch information
1 parent
ad89b9d
commit 28993dc
Showing
36 changed files
with
576 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
data/ | ||
settings/.conan.db | ||
settings/cacert.pem | ||
settings/artifacts.properties | ||
settings_*/.conan.db | ||
settings_*/cacert.pem | ||
settings_*/artifacts.properties | ||
ccache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[log] | ||
run_to_output = True # environment CONAN_LOG_RUN_TO_OUTPUT | ||
run_to_file = False # environment CONAN_LOG_RUN_TO_FILE | ||
level = critical # environment CONAN_LOGGING_LEVEL | ||
print_run_commands = False # environment CONAN_PRINT_RUN_COMMANDS | ||
|
||
[general] | ||
revisions_enabled = 1 | ||
default_profile = vfx2022 | ||
compression_level = 9 # environment CONAN_COMPRESSION_LEVEL | ||
sysrequires_sudo = True # environment CONAN_SYSREQUIRES_SUDO | ||
request_timeout = 60 # environment CONAN_REQUEST_TIMEOUT (seconds) | ||
default_package_id_mode = semver_direct_mode # environment CONAN_DEFAULT_PACKAGE_ID_MODE | ||
|
||
[storage] | ||
path = ../d | ||
download_cache = /tmp/downloads | ||
|
||
[proxies] | ||
|
||
[hooks] | ||
attribute_checker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
def pre_export(output, conanfile, conanfile_path, reference, **kwargs): | ||
# Check basic meta-data | ||
for field in ["url", "license", "description"]: | ||
field_value = getattr(conanfile, field, None) | ||
if not field_value: | ||
output.warn( | ||
"Conanfile doesn't have '%s'. It is recommended to add it as attribute" | ||
% field | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[settings] | ||
os=Windows | ||
os_build=Windows | ||
arch=x86_64 | ||
arch_build=x86_64 | ||
compiler=visual_studio | ||
compiler.version=15 | ||
compiler.toolset=v141 | ||
compiler.cppstd=14 | ||
build_type=Release | ||
[options] | ||
[build_requires] | ||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[settings] | ||
os=Windows | ||
os_build=Windows | ||
arch=x86_64 | ||
arch_build=x86_64 | ||
compiler=Visual Studio | ||
compiler.version=15 | ||
compiler.toolset=v141 | ||
compiler.cppstd=14 | ||
build_type=Release | ||
[options] | ||
[build_requires] | ||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(ci_common1) | ||
|
||
[settings] | ||
python=2.7 | ||
[options] | ||
[build_requires] | ||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(ci_common1) | ||
|
||
[settings] | ||
python=3.7 | ||
[options] | ||
[build_requires] | ||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(ci_common2) | ||
|
||
[settings] | ||
python=3.7 | ||
[options] | ||
[build_requires] | ||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(ci_common2) | ||
|
||
[settings] | ||
python=3.9 | ||
[options] | ||
[build_requires] | ||
[env] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"remotes": [ | ||
{ | ||
"name": "aswf", | ||
"url": "https://linuxfoundation.jfrog.io/artifactory/api/conan/aswf-conan", | ||
"verify_ssl": true | ||
}, | ||
{ | ||
"name": "conan-central", | ||
"url": "https://center.conan.io", | ||
"verify_ssl": true | ||
}, | ||
{ | ||
"name": "aswftesting", | ||
"url": "https://linuxfoundation.jfrog.io/artifactory/api/conan/aswf-conan-dev", | ||
"verify_ssl": true | ||
} | ||
] | ||
} |
Oops, something went wrong.