forked from NHERI-SimCenter/SimCenterCommon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.py
More file actions
17 lines (15 loc) · 677 Bytes
/
Copy pathbuild.py
File metadata and controls
17 lines (15 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
from cpt.packager import ConanMultiPackager
import copy
if __name__ == "__main__":
builder = ConanMultiPackager()
builder.add_common_builds()
buildsWithOptions = []
for settings, options, env_vars, build_requires, reference in builder.items:
options['SimCenterCommonQt:MDOFwithQt3D'] = False
buildsWithOptions.append([settings, options, env_vars, build_requires, reference])
options = copy.deepcopy(options)
options['SimCenterCommonQt:MDOFwithQt3D'] = True
buildsWithOptions.append([settings, options, env_vars, build_requires, reference])
builder.builds = buildsWithOptions
builder.run()