mirror of
https://gitee.com/openharmony/third_party_opencl-headers
synced 2024-11-23 15:12:28 +00:00
12 lines
253 B
Python
12 lines
253 B
Python
|
from cpt.packager import ConanMultiPackager
|
||
|
import datetime
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
builder = ConanMultiPackager(
|
||
|
username="khronos",
|
||
|
login_username="khronos",
|
||
|
channel="stable"
|
||
|
)
|
||
|
builder.add_common_builds()
|
||
|
builder.run()
|