Metadata-Version: 2.1
Name: vvmake
Version: 0.3.0
Summary: This is automation tools
Home-page: https://github.com/shelltdf/vvmake
Author: will
Author-email: shell_tdf@126.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# vvmake

one man call him self AV. so he`s make call VVMAKE.



# vvmake_config.py

you mast add this py file to your project root dir. for example:

```python
from vvmakelib import vv

def dependency():
    if vv.FIND("include/pcl.h"):
        print("error")
        return False
    return True

def make():
	OPT = ""
    vv.CMAKE(OPT)

def install():
    vv.INSTALL()

def package():
    vv.PACKAGE()

```



# vvmake.py

```

python vvmake.py build -pdir ./ -idir d:/dev
python vvmake.py install
python vvmake.py test
python vvmake.py package


python vvmake.py build -pdir testproject -idir d:/dev

```



