Added a installation script for the cppcheck-htmlreport utility.
The script uses distutils to install the script into /usr/bin/. The following will install the script: sudo ./setup.py install
This commit is contained in:
parent
89b2118622
commit
f1ad308f5f
|
@ -0,0 +1,10 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
setup(
|
||||||
|
name="cppcheck",
|
||||||
|
scripts=[
|
||||||
|
"cppcheck-htmlreport",
|
||||||
|
]
|
||||||
|
)
|
Loading…
Reference in New Issue