A cross build dsl make tool


License
MIT
Install
pip install yymake==0.7.9

Documentation

ymake

ymake is a make dsl build tools

安装

pip install yymake

使用

新建ya.py

project("yiyiya",
    version='12.0',
    desc='yiyiya is an os',
)

target('hello')
add_kind("binary")
add_files("./main.c")

编译运行

ya