🐛 Fixed OGRE debug build on Linux

This commit is contained in:
2021-08-16 09:25:29 +00:00
parent 1cd12b8162
commit f44c04fab1
6 changed files with 27 additions and 3 deletions

View File

@ -30,8 +30,8 @@ for pkg in packages:
system(f"conan export {pkg}")
for pkg in packages:
system(f"conan create {pkg} -s=build_type=Release -k -b=missing")
system(f"conan create {pkg} -s=build_type=Debug -k -b=missing")
system(f"conan create {pkg} -s=build_type=Release -k -b=outdated")
system(f"conan create {pkg} -s=build_type=Debug -k -b=outdated")
data = list(filter(lambda k: 'anotherfoxguy' in k, subprocess.run(['conan','search','*','--raw'], stdout=subprocess.PIPE).stdout.decode("utf-8").split()))