mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
18 lines
653 B
Makefile
18 lines
653 B
Makefile
.PHONY: ci
|
|
ci:
|
|
tox
|
|
|
|
.PHONY: license
|
|
license:
|
|
copyright-header --license LGPL3 --copyright-holder "Andrea Ghensi <andrea.ghensi@gmail.com>" --copyright-year "2022" --copyright-software "IfcOpenShell" --copyright-software-description "BCF XML file handling" -a ./ -o ./
|
|
|
|
# TODO: make this based on xsd file presence
|
|
.PHONY: models
|
|
models:
|
|
cd src && xsdata generate -p bcf.v2.model --unnest-classes --kw-only --slots -ds Google bcf/v2/xsd
|
|
cd src && xsdata generate -p bcf.v3.model --unnest-classes --kw-only --slots -ds Google bcf/v3/xsd
|
|
|
|
# .PHONY
|
|
# api:
|
|
# openapi-python-client generate --url https://api.swaggerhub.com/apis/buildingSMART/BCF/3.0
|