mirror of
https://github.com/Minres/conan-recipes.git
synced 2025-07-01 15:33:27 +02:00
Updated settings
This commit is contained in:
@ -5,8 +5,13 @@ if __name__ == "__main__":
|
||||
archs = ['x86', 'x86_64']
|
||||
types = ['Debug','Release']
|
||||
cxxstds = ['98', '11','14']
|
||||
libstdcxx = ['libstdc++', 'libstdc++11']
|
||||
shared = [True,False]
|
||||
configs = [[i,k,s] for i in cxxstds for k in types for s in shared]
|
||||
configs = [[i,k,l,s] for i in cxxstds for k in types for l in libstdcxx for s in shared]
|
||||
for triple in configs:
|
||||
builder.add(settings={"build_type":triple[1]}, options={"stdcxx" : triple[0], "shared" : triple[2]}, env_vars={}, build_requires={})
|
||||
builder.add(
|
||||
settings={"build_type":triple[1],"compiler.libcxx":triple[2]},
|
||||
options={"stdcxx" : triple[0], "shared" : triple[3]},
|
||||
env_vars={},
|
||||
build_requires={})
|
||||
builder.run()
|
||||
|
@ -27,7 +27,7 @@ class SystemCConan(ConanFile):
|
||||
cmake.build()
|
||||
cmake.install()
|
||||
|
||||
def package(self):
|
||||
#def package(self):
|
||||
# Headers
|
||||
#self.copy(pattern="*.h", dst="include", src="package/include", keep_path=True)
|
||||
# Libs
|
||||
|
Reference in New Issue
Block a user